/** * 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 CloudConnection */ export interface CloudConnection { /** * * @type {number} * @memberof CloudConnection */ id: number; /** * * @type {string} * @memberof CloudConnection */ name: string; /** * * @type {string} * @memberof CloudConnection */ url: string; /** * * @type {string} * @memberof CloudConnection */ readonly presignedLoginUrl: string; } export declare function CloudConnectionFromJSON(json: any): CloudConnection; export declare function CloudConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): CloudConnection; export declare function CloudConnectionToJSON(value?: CloudConnection | null): any;