/** * BIMData API * BIMData API is a tool to interact with your models stored on BIMData’s servers. Through the API, you can manage your projects, the clouds, upload your IFC files and manage them through endpoints. * * The version of the OpenAPI document: v1 (v1) * Contact: support@bimdata.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Feature } from './Feature'; import { MarketplaceAppLight } from './MarketplaceAppLight'; import { Organization } from './Organization'; import { User } from './User'; /** * * @export * @interface Cloud */ export interface Cloud { /** * * @type {number} * @memberof Cloud */ readonly id: number; /** * Name of the cloud * @type {string} * @memberof Cloud */ name: string; /** * * @type {Array} * @memberof Cloud */ readonly features: Array; /** * * @type {Array} * @memberof Cloud */ readonly marketplace_apps: Array; /** * * @type {Organization} * @memberof Cloud */ readonly organization: Organization | null; /** * * @type {User} * @memberof Cloud */ readonly creator: User | null; /** * * @type {string} * @memberof Cloud */ readonly creator_app: string | null; /** * * @type {boolean} * @memberof Cloud */ readonly is_default: boolean; /** * Creation date * @type {Date} * @memberof Cloud */ readonly created_at: Date; /** * * @type {string} * @memberof Cloud */ image?: string | null; /** * Date of the last update * @type {Date} * @memberof Cloud */ readonly updated_at: Date; } export declare function CloudFromJSON(json: any): Cloud; export declare function CloudFromJSONTyped(json: any, ignoreDiscriminator: boolean): Cloud; export declare function CloudToJSON(value?: Cloud | null): any;