/** * 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 { ShortUser } from './ShortUser'; /** * * @export * @interface LightModel */ export interface LightModel { /** * * @type {number} * @memberof LightModel */ readonly id: number; /** * * @type {number} * @memberof LightModel */ readonly document_id: number | null; /** * * @type {ShortUser} * @memberof LightModel */ readonly creator: ShortUser | null; /** * * @type {string} * @memberof LightModel */ readonly name: string | null; /** * * `IFC` - IFC * * `DWG` - DWG * * `DXF` - DXF * * `GLTF` - GLTF * * `PDF` - PDF * * `JPEG` - JPEG * * `PNG` - PNG * * `OBJ` - OBJ * * `POINT_CLOUD` - POINT_CLOUD * * `PHOTOSPHERE` - PHOTOSPHERE * * `METABUILDING` - METABUILDING * * `PHOTOSPHERE_BUILDING` - PHOTOSPHERE_BUILDING * @type {string} * @memberof LightModel */ readonly type: LightModelTypeEnum; /** * * @type {string} * @memberof LightModel */ readonly preview_file: string | null; /** * * @type {Date} * @memberof LightModel */ readonly created_at: Date; /** * * @type {Date} * @memberof LightModel */ readonly updated_at: Date; /** * * `UPLOAD` - UPLOAD * * `SPLIT` - SPLIT * * `MERGE` - MERGE * * `EXPORT` - EXPORT * * `OPTIMIZED` - OPTIMIZED * @type {string} * @memberof LightModel */ readonly source: LightModelSourceEnum; /** * * @type {boolean} * @memberof LightModel */ readonly archived: boolean; /** * * @type {string} * @memberof LightModel */ readonly status: string; } /** * @export * @enum {string} */ export declare enum LightModelTypeEnum { Ifc = "IFC", Dwg = "DWG", Dxf = "DXF", Gltf = "GLTF", Pdf = "PDF", Jpeg = "JPEG", Png = "PNG", Obj = "OBJ", PointCloud = "POINT_CLOUD", Photosphere = "PHOTOSPHERE", Metabuilding = "METABUILDING", PhotosphereBuilding = "PHOTOSPHERE_BUILDING" } /** * @export * @enum {string} */ export declare enum LightModelSourceEnum { Upload = "UPLOAD", Split = "SPLIT", Merge = "MERGE", Export = "EXPORT", Optimized = "OPTIMIZED" } export declare function LightModelFromJSON(json: any): LightModel; export declare function LightModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): LightModel; export declare function LightModelToJSON(value?: LightModel | null): any;