/** * 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 UpdateSchemaDto */ export interface UpdateSchemaDto { /** * Optional label for the editor. * @type {string} * @memberof UpdateSchemaDto */ label?: string | null; /** * Hints to describe the schema. * @type {string} * @memberof UpdateSchemaDto */ hints?: string | null; /** * The url to a the sidebar plugin for content lists. * @type {string} * @memberof UpdateSchemaDto */ contentsSidebarUrl?: string | null; /** * The url to a the sidebar plugin for content items. * @type {string} * @memberof UpdateSchemaDto */ contentSidebarUrl?: string | null; /** * The url to the content list plugin. * @type {string} * @memberof UpdateSchemaDto */ contentsListUrl?: string | null; /** * True to validate the content items on publish. * @type {boolean} * @memberof UpdateSchemaDto */ validateOnPublish?: boolean; /** * Tags for automation processes. * @type {Array} * @memberof UpdateSchemaDto */ tags?: Array | null; } /** * Check if a given object implements the UpdateSchemaDto interface. */ export declare function instanceOfUpdateSchemaDto(value: any): value is UpdateSchemaDto; export declare function UpdateSchemaDtoFromJSON(json: any): UpdateSchemaDto; export declare function UpdateSchemaDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): UpdateSchemaDto; export declare function UpdateSchemaDtoToJSON(value?: UpdateSchemaDto | null, _ignoreDiscriminator?: boolean): any;