/** * 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 { BulkUpdateAssetType } from './BulkUpdateAssetType'; /** * * @export * @interface BulkUpdateAssetsJobDto */ export interface BulkUpdateAssetsJobDto { /** * An optional ID of the asset to update. * @type {string} * @memberof BulkUpdateAssetsJobDto */ id?: string; /** * * @type {BulkUpdateAssetType} * @memberof BulkUpdateAssetsJobDto */ type?: BulkUpdateAssetType; /** * The parent folder id. * @type {string} * @memberof BulkUpdateAssetsJobDto */ parentId?: string; /** * The new name of the asset. * @type {string} * @memberof BulkUpdateAssetsJobDto */ fileName?: string | null; /** * The new slug of the asset. * @type {string} * @memberof BulkUpdateAssetsJobDto */ slug?: string | null; /** * True, when the asset is not public. * @type {boolean} * @memberof BulkUpdateAssetsJobDto */ isProtected?: boolean | null; /** * The new asset tags. * @type {Array} * @memberof BulkUpdateAssetsJobDto */ tags?: Array | null; /** * The asset metadata. * @type {{ [key: string]: any; }} * @memberof BulkUpdateAssetsJobDto */ metadata?: { [key: string]: any; } | null; /** * True to delete the asset permanently. * @type {boolean} * @memberof BulkUpdateAssetsJobDto */ permanent?: boolean; /** * The expected version. * @type {number} * @memberof BulkUpdateAssetsJobDto */ expectedVersion?: number; } /** * Check if a given object implements the BulkUpdateAssetsJobDto interface. */ export declare function instanceOfBulkUpdateAssetsJobDto(value: any): value is BulkUpdateAssetsJobDto; export declare function BulkUpdateAssetsJobDtoFromJSON(json: any): BulkUpdateAssetsJobDto; export declare function BulkUpdateAssetsJobDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): BulkUpdateAssetsJobDto; export declare function BulkUpdateAssetsJobDtoToJSON(value?: BulkUpdateAssetsJobDto | null, _ignoreDiscriminator?: boolean): any;