/** * 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 { Cloud } from './Cloud'; /** * * @export * @interface Project */ export interface Project { /** * * @type {number} * @memberof Project */ readonly id: number; /** * * @type {string} * @memberof Project */ logo?: string | null; /** * Name of the project * @type {string} * @memberof Project */ name: string; /** * * @type {string} * @memberof Project */ description?: string | null; /** * * @type {Cloud} * @memberof Project */ readonly cloud: Cloud | null; /** * * `A` - active * * `D` - deleted * @type {string} * @memberof Project */ status?: ProjectStatusEnum; /** * Creation date * @type {Date} * @memberof Project */ readonly created_at: Date; /** * Date of the last update * @type {Date} * @memberof Project */ readonly updated_at: Date; /** * * @type {number} * @memberof Project */ readonly root_folder_id: number | null; /** * * @type {number} * @memberof Project */ main_model_id?: number | null; } /** * @export * @enum {string} */ export declare enum ProjectStatusEnum { A = "A", D = "D" } export declare function ProjectFromJSON(json: any): Project; export declare function ProjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): Project; export declare function ProjectToJSON(value?: Project | null): any;