/** * 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. */ /** * * @export * @interface ProjectRequest */ export interface ProjectRequest { /** * * @type {Blob} * @memberof ProjectRequest */ logo?: Blob | null; /** * Name of the project * @type {string} * @memberof ProjectRequest */ name: string; /** * * @type {string} * @memberof ProjectRequest */ description?: string | null; /** * * `A` - active * * `D` - deleted * @type {string} * @memberof ProjectRequest */ status?: ProjectRequestStatusEnum; /** * * @type {number} * @memberof ProjectRequest */ main_model_id?: number | null; } /** * @export * @enum {string} */ export declare enum ProjectRequestStatusEnum { A = "A", D = "D" } export declare function ProjectRequestFromJSON(json: any): ProjectRequest; export declare function ProjectRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectRequest; export declare function ProjectRequestToJSON(value?: ProjectRequest | null): any;