/** * 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 SchemaScriptsDto */ export interface SchemaScriptsDto { /** * The script that is executed for each content when querying contents. * @type {string} * @memberof SchemaScriptsDto */ query?: string | null; /** * The script that is executed for all contents when querying contents. * @type {string} * @memberof SchemaScriptsDto */ queryPre?: string | null; /** * The script that is executed when creating a content. * @type {string} * @memberof SchemaScriptsDto */ create?: string | null; /** * The script that is executed when updating a content. * @type {string} * @memberof SchemaScriptsDto */ update?: string | null; /** * The script that is executed when deleting a content. * @type {string} * @memberof SchemaScriptsDto */ _delete?: string | null; /** * The script that is executed when change a content status. * @type {string} * @memberof SchemaScriptsDto */ change?: string | null; } /** * Check if a given object implements the SchemaScriptsDto interface. */ export declare function instanceOfSchemaScriptsDto(value: any): value is SchemaScriptsDto; export declare function SchemaScriptsDtoFromJSON(json: any): SchemaScriptsDto; export declare function SchemaScriptsDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): SchemaScriptsDto; export declare function SchemaScriptsDtoToJSON(value?: SchemaScriptsDto | null, _ignoreDiscriminator?: boolean): any;