/** * 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 RawUnit */ export interface RawUnit { /** * * @type {number} * @memberof RawUnit */ readonly id: number; /** * * @type {string} * @memberof RawUnit */ name?: string | null; /** * * @type {string} * @memberof RawUnit */ type: string; /** * * @type {string} * @memberof RawUnit */ unit_type?: string | null; /** * * @type {string} * @memberof RawUnit */ prefix?: string | null; /** * * @type {any} * @memberof RawUnit */ elements?: any | null; /** * * @type {number} * @memberof RawUnit */ conversion_factor?: number | null; /** * * @type {Array} * @memberof RawUnit */ dimensions?: Array | null; /** * * @type {number} * @memberof RawUnit */ conversion_baseunit_index?: number | null; /** * * @type {boolean} * @memberof RawUnit */ is_default?: boolean | null; } export declare function RawUnitFromJSON(json: any): RawUnit; export declare function RawUnitFromJSONTyped(json: any, ignoreDiscriminator: boolean): RawUnit; export declare function RawUnitToJSON(value?: RawUnit | null): any;