/** * 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 { Geometry2dPoint } from './Geometry2dPoint'; import { User } from './User'; /** * * @export * @interface ModelLabel */ export interface ModelLabel { /** * * @type {number} * @memberof ModelLabel */ readonly id: number; /** * The model to which the label is attached * @type {number} * @memberof ModelLabel */ readonly model: number; /** * Name of the label * @type {string} * @memberof ModelLabel */ name: string; /** * * Color of the label in hexadecimal string without the '#' prefix. * Example: 'fff', 'fff0', '0f0f0f', '0f0f0f00'. * * @type {string} * @memberof ModelLabel */ color?: string | null; /** * * @type {Array} * @memberof ModelLabel */ geometry: Array; /** * Whether the label has been created or validated by a human or not * @type {boolean} * @memberof ModelLabel */ human_validated?: boolean; /** * * @type {User} * @memberof ModelLabel */ readonly creator: User | null; /** * Creation date * @type {Date} * @memberof ModelLabel */ readonly created_at: Date; /** * Date of the last update * @type {Date} * @memberof ModelLabel */ readonly updated_at: Date; } export declare function ModelLabelFromJSON(json: any): ModelLabel; export declare function ModelLabelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelLabel; export declare function ModelLabelToJSON(value?: ModelLabel | null): any;