/** * 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. */ import type { ResourceLink } from './ResourceLink'; /** * * @export * @interface AssetScriptsDto */ export interface AssetScriptsDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof AssetScriptsDto */ links: { [key: string]: ResourceLink; }; /** * The script that is executed for each asset when querying assets. * @type {string} * @memberof AssetScriptsDto */ query?: string | null; /** * The script that is executed for all assets when querying assets. * @type {string} * @memberof AssetScriptsDto */ queryPre?: string | null; /** * The script that is executed when creating an asset. * @type {string} * @memberof AssetScriptsDto */ create?: string | null; /** * The script that is executed when updating a content. * @type {string} * @memberof AssetScriptsDto */ update?: string | null; /** * The script that is executed when annotating a content. * @type {string} * @memberof AssetScriptsDto */ annotate?: string | null; /** * The script that is executed when moving a content. * @type {string} * @memberof AssetScriptsDto */ move?: string | null; /** * The script that is executed when deleting a content. * @type {string} * @memberof AssetScriptsDto */ _delete?: string | null; /** * The version of the app. * @type {number} * @memberof AssetScriptsDto */ version: number; } /** * Check if a given object implements the AssetScriptsDto interface. */ export declare function instanceOfAssetScriptsDto(value: any): value is AssetScriptsDto; export declare function AssetScriptsDtoFromJSON(json: any): AssetScriptsDto; export declare function AssetScriptsDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): AssetScriptsDto; export declare function AssetScriptsDtoToJSON(value?: AssetScriptsDto | null, _ignoreDiscriminator?: boolean): any;