/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SchemaPropertiesDto */ export interface SchemaPropertiesDto { /** * Optional label for the editor. * @type {string} * @memberof SchemaPropertiesDto */ label?: string | null; /** * Hints to describe the schema. * @type {string} * @memberof SchemaPropertiesDto */ hints?: string | null; /** * The url to a the sidebar plugin for content lists. * @type {string} * @memberof SchemaPropertiesDto */ contentsSidebarUrl?: string | null; /** * The url to a the sidebar plugin for content items. * @type {string} * @memberof SchemaPropertiesDto */ contentSidebarUrl?: string | null; /** * The url to the editor plugin. * @type {string} * @memberof SchemaPropertiesDto */ contentEditorUrl?: string | null; /** * The url to the editor plugin. * @type {string} * @memberof SchemaPropertiesDto */ contentsEditorUrl?: string | null; /** * The url to the content list plugin. * @type {string} * @memberof SchemaPropertiesDto */ contentsListUrl?: string | null; /** * True to validate the content items on publish. * @type {boolean} * @memberof SchemaPropertiesDto */ validateOnPublish: boolean; /** * Tags for automation processes. * @type {Array} * @memberof SchemaPropertiesDto */ tags?: Array | null; } /** * Check if a given object implements the SchemaPropertiesDto interface. */ export declare function instanceOfSchemaPropertiesDto(value: any): value is SchemaPropertiesDto; export declare function SchemaPropertiesDtoFromJSON(json: any): SchemaPropertiesDto; export declare function SchemaPropertiesDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): SchemaPropertiesDto; export declare function SchemaPropertiesDtoToJSON(value?: SchemaPropertiesDto | null, _ignoreDiscriminator?: boolean): any;