/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * 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 AssetUpdate */ export interface AssetUpdate { /** * * @type {{ [key: string]: string | undefined; }} * @memberof AssetUpdate */ customFields: { [key: string]: string | undefined; }; /** * * @type {Array} * @memberof AssetUpdate */ tags: Array; /** * * @type {number} * @memberof AssetUpdate */ workflowState?: number; /** * * @type {number} * @memberof AssetUpdate */ set?: number | null; } export declare function AssetUpdateFromJSON(json: any): AssetUpdate; export declare function AssetUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetUpdate; export declare function AssetUpdateToJSON(value?: AssetUpdate | null): any;