/** * 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 CloudAccountMini */ export interface CloudAccountMini { /** * * @type {number} * @memberof CloudAccountMini */ id: number; /** * * @type {string} * @memberof CloudAccountMini */ provider?: CloudAccountMiniProviderEnum; /** * * @type {string} * @memberof CloudAccountMini */ name: string; } /** * @export * @enum {string} */ export declare enum CloudAccountMiniProviderEnum { Azure = "azure", Aws = "aws", Gcloud = "gcloud" } export declare function CloudAccountMiniFromJSON(json: any): CloudAccountMini; export declare function CloudAccountMiniFromJSONTyped(json: any, ignoreDiscriminator: boolean): CloudAccountMini; export declare function CloudAccountMiniToJSON(value?: CloudAccountMini | null): any;