/** * 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 AssetMiniReference */ export interface AssetMiniReference { /** * * @type {number} * @memberof AssetMiniReference */ id: number; /** * * @type {string} * @memberof AssetMiniReference */ readonly syncId?: string; /** * * @type {Proxy} * @memberof AssetMiniReference */ defaultProxy?: Proxy; /** * * @type {string} * @memberof AssetMiniReference */ readonly type?: string; /** * * @type {string} * @memberof AssetMiniReference */ readonly displayName?: string; /** * * @type {FormatMetadata} * @memberof AssetMiniReference */ format?: FormatMetadata; /** * * @type {{ [key: string]: string | undefined; }} * @memberof AssetMiniReference */ readonly info?: { [key: string]: string | undefined; }; /** * * @type {boolean} * @memberof AssetMiniReference */ readonly thumbnailGenerated?: boolean; } export declare function AssetMiniReferenceFromJSON(json: any): AssetMiniReference; export declare function AssetMiniReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetMiniReference; export declare function AssetMiniReferenceToJSON(value?: AssetMiniReference | null): any;