/** * Metadata of a property * @public */ export interface IDynamicDataPropertyMetadata { /** * User-friendly, localized title of the property. * Example: "My files" / "Mis archivos" (depending of current language) */ title: string; /** * User-friendly, localized description of the property. * Example: "Contains a list of ids with the files of the current user" */ description?: string; } /** * Definition of a property. It includes the id of the property to be used with the APIs, along with * a user-friendly, localized title and description to be seen and used by end users. * * @public */ export interface IDynamicDataPropertyDefinition extends IDynamicDataPropertyMetadata { /** * Id of the property. This can only contains letters, numbers, dashes and underscores. * Example: "myFiles" or "time_in_24-hour_clock" */ id: string; } //# sourceMappingURL=IDynamicDataPropertyDefinition.d.ts.map