/** * 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 { User } from './User'; /** * * @export * @interface ModelEquipment */ export interface ModelEquipment { /** * * @type {number} * @memberof ModelEquipment */ readonly id: number; /** * The model to which the equipment is attached * @type {number} * @memberof ModelEquipment */ readonly model: number; /** * Name of the equipment * @type {string} * @memberof ModelEquipment */ name: string; /** * Description of the equipment * @type {string} * @memberof ModelEquipment */ description?: string | null; /** * * @type {Array} * @memberof ModelEquipment */ position: Array; /** * * @type {User} * @memberof ModelEquipment */ readonly creator: User | null; /** * Creation date * @type {Date} * @memberof ModelEquipment */ readonly created_at: Date; /** * Date of the last update * @type {Date} * @memberof ModelEquipment */ readonly updated_at: Date; } export declare function ModelEquipmentFromJSON(json: any): ModelEquipment; export declare function ModelEquipmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelEquipment; export declare function ModelEquipmentToJSON(value?: ModelEquipment | null): any;