/** * 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 UpdateAssetScriptsDto */ export interface UpdateAssetScriptsDto { /** * The script that is executed for each asset when querying assets. * @type {string} * @memberof UpdateAssetScriptsDto */ query?: string | null; /** * The script that is executed for all assets when querying assets. * @type {string} * @memberof UpdateAssetScriptsDto */ queryPre?: string | null; /** * The script that is executed when creating an asset. * @type {string} * @memberof UpdateAssetScriptsDto */ create?: string | null; /** * The script that is executed when updating a content. * @type {string} * @memberof UpdateAssetScriptsDto */ update?: string | null; /** * The script that is executed when annotating a content. * @type {string} * @memberof UpdateAssetScriptsDto */ annotate?: string | null; /** * The script that is executed when moving a content. * @type {string} * @memberof UpdateAssetScriptsDto */ move?: string | null; /** * The script that is executed when deleting a content. * @type {string} * @memberof UpdateAssetScriptsDto */ _delete?: string | null; } /** * Check if a given object implements the UpdateAssetScriptsDto interface. */ export declare function instanceOfUpdateAssetScriptsDto(value: any): value is UpdateAssetScriptsDto; export declare function UpdateAssetScriptsDtoFromJSON(json: any): UpdateAssetScriptsDto; export declare function UpdateAssetScriptsDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): UpdateAssetScriptsDto; export declare function UpdateAssetScriptsDtoToJSON(value?: UpdateAssetScriptsDto | null, _ignoreDiscriminator?: boolean): any;