/** * 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. */ import { FormatMetadata, Proxy } from './'; /** * * @export * @interface AssetMini */ export interface AssetMini { /** * * @type {number} * @memberof AssetMini */ id: number; /** * * @type {string} * @memberof AssetMini */ readonly syncId: string; /** * * @type {Proxy} * @memberof AssetMini */ defaultProxy?: Proxy; /** * * @type {string} * @memberof AssetMini */ readonly type: string; /** * * @type {string} * @memberof AssetMini */ readonly displayName: string; /** * * @type {FormatMetadata} * @memberof AssetMini */ format: FormatMetadata; /** * * @type {{ [key: string]: string | undefined; }} * @memberof AssetMini */ readonly info: { [key: string]: string | undefined; }; /** * * @type {boolean} * @memberof AssetMini */ readonly thumbnailGenerated: boolean; } export declare function AssetMiniFromJSON(json: any): AssetMini; export declare function AssetMiniFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetMini; export declare function AssetMiniToJSON(value?: AssetMini | null): any;