/** * 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 AnnotateAssetDto */ export interface AnnotateAssetDto { /** * The new name of the asset. * @type {string} * @memberof AnnotateAssetDto */ fileName?: string | null; /** * The new slug of the asset. * @type {string} * @memberof AnnotateAssetDto */ slug?: string | null; /** * True, when the asset is not public. * @type {boolean} * @memberof AnnotateAssetDto */ isProtected?: boolean | null; /** * The new asset tags. * @type {Array} * @memberof AnnotateAssetDto */ tags?: Array | null; /** * The asset metadata. * @type {{ [key: string]: any; }} * @memberof AnnotateAssetDto */ metadata?: { [key: string]: any; } | null; } /** * Check if a given object implements the AnnotateAssetDto interface. */ export declare function instanceOfAnnotateAssetDto(value: any): value is AnnotateAssetDto; export declare function AnnotateAssetDtoFromJSON(json: any): AnnotateAssetDto; export declare function AnnotateAssetDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): AnnotateAssetDto; export declare function AnnotateAssetDtoToJSON(value?: AnnotateAssetDto | null, _ignoreDiscriminator?: boolean): any;