/** * 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 { ProxyProfileMini } from './'; /** * * @export * @interface Proxy */ export interface Proxy { /** * * @type {number} * @memberof Proxy */ id: number; /** * * @type {{ [key: string]: string | undefined; }} * @memberof Proxy */ readonly urls: { [key: string]: string | undefined; }; /** * * @type {ProxyProfileMini} * @memberof Proxy */ profile: ProxyProfileMini; /** * * @type {string} * @memberof Proxy */ readonly failedReason: string | null; /** * * @type {string} * @memberof Proxy */ readonly transforms: string; /** * * @type {boolean} * @memberof Proxy */ generated?: boolean; /** * * @type {boolean} * @memberof Proxy */ failed?: boolean; /** * * @type {string} * @memberof Proxy */ name?: string; /** * * @type {string} * @memberof Proxy */ variantId?: string; /** * * @type {string} * @memberof Proxy */ variantConfig?: string; /** * * @type {number} * @memberof Proxy */ asset: number; } export declare function ProxyFromJSON(json: any): Proxy; export declare function ProxyFromJSONTyped(json: any, ignoreDiscriminator: boolean): Proxy; export declare function ProxyToJSON(value?: Proxy | null): any;