/** * 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 { Property } from './Property'; /** * Adds nested create feature * @export * @interface PropertySet */ export interface PropertySet { /** * * @type {number} * @memberof PropertySet */ readonly id: number; /** * * @type {string} * @memberof PropertySet */ name?: string | null; /** * * @type {string} * @memberof PropertySet */ description?: string | null; /** * * @type {string} * @memberof PropertySet */ type?: string | null; /** * * @type {Array} * @memberof PropertySet */ properties?: Array; /** * * @type {Date} * @memberof PropertySet */ readonly created_at: Date; /** * * @type {Date} * @memberof PropertySet */ readonly updated_at: Date; } export declare function PropertySetFromJSON(json: any): PropertySet; export declare function PropertySetFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertySet; export declare function PropertySetToJSON(value?: PropertySet | null): any;