/** * 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 { AssetMini } from './'; /** * * @export * @interface LocateProxiesEndpointResponse */ export interface LocateProxiesEndpointResponse { /** * * @type {AssetMini} * @memberof LocateProxiesEndpointResponse */ asset: AssetMini; /** * * @type {string} * @memberof LocateProxiesEndpointResponse */ syncId: string; /** * * @type {string} * @memberof LocateProxiesEndpointResponse */ path: string; } export declare function LocateProxiesEndpointResponseFromJSON(json: any): LocateProxiesEndpointResponse; export declare function LocateProxiesEndpointResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LocateProxiesEndpointResponse; export declare function LocateProxiesEndpointResponseToJSON(value?: LocateProxiesEndpointResponse | null): any;