/** * 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 { RawClassification } from './RawClassification'; import { RawDefinition } from './RawDefinition'; import { RawElement } from './RawElement'; import { RawLayer } from './RawLayer'; import { RawMaterialList } from './RawMaterialList'; import { RawPropertySet } from './RawPropertySet'; import { RawSystem } from './RawSystem'; import { RawUnit } from './RawUnit'; /** * * @export * @interface RawElements */ export interface RawElements { /** * * @type {Array} * @memberof RawElements */ units?: Array | null; /** * * @type {Array} * @memberof RawElements */ definitions?: Array | null; /** * * @type {Array} * @memberof RawElements */ property_sets?: Array | null; /** * * @type {Array} * @memberof RawElements */ classifications?: Array | null; /** * * @type {Array} * @memberof RawElements */ layers?: Array | null; /** * * @type {Array} * @memberof RawElements */ systems?: Array | null; /** * * @type {RawMaterialList} * @memberof RawElements */ materials?: RawMaterialList | null; /** * * @type {Array} * @memberof RawElements */ elements: Array; } export declare function RawElementsFromJSON(json: any): RawElements; export declare function RawElementsFromJSONTyped(json: any, ignoreDiscriminator: boolean): RawElements; export declare function RawElementsToJSON(value?: RawElements | null): any;