/** * 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 { ClassificationRequest } from './ClassificationRequest'; import { LayerElementRequest } from './LayerElementRequest'; import { PropertySetRequest } from './PropertySetRequest'; /** * Adds nested create feature * @export * @interface PatchedElementRequest */ export interface PatchedElementRequest { /** * * @type {string} * @memberof PatchedElementRequest */ uuid?: string; /** * IFC type for the element * @type {string} * @memberof PatchedElementRequest */ type?: string; /** * * @type {PropertySetRequest} * @memberof PatchedElementRequest */ attributes?: PropertySetRequest; /** * * @type {Array} * @memberof PatchedElementRequest */ property_sets?: Array; /** * * @type {Array} * @memberof PatchedElementRequest */ classifications?: Array; /** * * @type {Array} * @memberof PatchedElementRequest */ layers?: Array; } export declare function PatchedElementRequestFromJSON(json: any): PatchedElementRequest; export declare function PatchedElementRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedElementRequest; export declare function PatchedElementRequestToJSON(value?: PatchedElementRequest | null): any;