/** * 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 { PropertyDefinition } from './PropertyDefinition'; /** * Adds nested create feature * @export * @interface Property */ export interface Property { /** * * @type {number} * @memberof Property */ readonly id: number; /** * * @type {PropertyDefinition} * @memberof Property */ definition: PropertyDefinition; /** * * @type {any} * @memberof Property */ value?: any | null; /** * This field is useful when you update a property and the API is rebuilding a new property set to avoid an update on many elements. It gives you the new pset id * @type {number} * @memberof Property */ readonly property_set_id: number; /** * * @type {Date} * @memberof Property */ readonly created_at: Date; /** * * @type {Date} * @memberof Property */ readonly updated_at: Date; } export declare function PropertyFromJSON(json: any): Property; export declare function PropertyFromJSONTyped(json: any, ignoreDiscriminator: boolean): Property; export declare function PropertyToJSON(value?: Property | null): any;