/** * 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 ClientsEndpointResponse */ export interface ClientsEndpointResponse { /** * * @type {string} * @memberof ClientsEndpointResponse */ version: string; /** * * @type {string} * @memberof ClientsEndpointResponse */ fullVersion: string; /** * * @type {string} * @memberof ClientsEndpointResponse */ platform: string; /** * * @type {string} * @memberof ClientsEndpointResponse */ file: string; } export declare function ClientsEndpointResponseFromJSON(json: any): ClientsEndpointResponse; export declare function ClientsEndpointResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClientsEndpointResponse; export declare function ClientsEndpointResponseToJSON(value?: ClientsEndpointResponse | null): any;