/** * 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 AssetPartialUpdate */ export interface AssetPartialUpdate { /** * * @type {{ [key: string]: string | undefined; }} * @memberof AssetPartialUpdate */ customFields?: { [key: string]: string | undefined; }; /** * * @type {Array} * @memberof AssetPartialUpdate */ tags?: Array; /** * * @type {number} * @memberof AssetPartialUpdate */ workflowState?: number; /** * * @type {number} * @memberof AssetPartialUpdate */ set?: number | null; } export declare function AssetPartialUpdateFromJSON(json: any): AssetPartialUpdate; export declare function AssetPartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetPartialUpdate; export declare function AssetPartialUpdateToJSON(value?: AssetPartialUpdate | null): any;