/** * 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. */ /** * * @export * @interface Mask2D */ export interface Mask2D { /** * * @type {number} * @memberof Mask2D */ readonly id: number; /** * Crop path of the manually created mask to show only a part of the model. * @type {Array>} * @memberof Mask2D */ crop_path?: Array> | null; /** * Whether the mask is grayscale * @type {boolean} * @memberof Mask2D */ grayscale?: boolean; /** * Opacity of the mask (0-1) * @type {number} * @memberof Mask2D */ opacity?: number | null; /** * Brightness of the mask * @type {number} * @memberof Mask2D */ brightness?: number | null; /** * Contrast of the mask * @type {number} * @memberof Mask2D */ contrast?: number | null; /** * Creation date * @type {Date} * @memberof Mask2D */ readonly created_at: Date; /** * Date of the last update * @type {Date} * @memberof Mask2D */ readonly updated_at: Date; } export declare function Mask2DFromJSON(json: any): Mask2D; export declare function Mask2DFromJSONTyped(json: any, ignoreDiscriminator: boolean): Mask2D; export declare function Mask2DToJSON(value?: Mask2D | null): any;