/** * 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 { Classification } from './Classification'; import { LayerElement } from './LayerElement'; import { MaterialListComponent } from './MaterialListComponent'; import { PropertySet } from './PropertySet'; /** * Adds nested create feature * @export * @interface Element */ export interface Element { /** * * @type {number} * @memberof Element */ readonly id: number; /** * * @type {string} * @memberof Element */ uuid?: string; /** * IFC type for the element * @type {string} * @memberof Element */ type: string; /** * * @type {PropertySet} * @memberof Element */ attributes?: PropertySet; /** * * @type {Array} * @memberof Element */ property_sets?: Array; /** * * @type {Array} * @memberof Element */ classifications?: Array; /** * * @type {Array} * @memberof Element */ readonly material_list: Array; /** * * @type {Array} * @memberof Element */ layers?: Array; } export declare function ElementFromJSON(json: any): Element; export declare function ElementFromJSONTyped(json: any, ignoreDiscriminator: boolean): Element; export declare function ElementToJSON(value?: Element | null): any;