/** * 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 Mask2DRequest */ export interface Mask2DRequest { /** * Crop path of the manually created mask to show only a part of the model. * @type {Array>} * @memberof Mask2DRequest */ crop_path?: Array> | null; /** * Whether the mask is grayscale * @type {boolean} * @memberof Mask2DRequest */ grayscale?: boolean; /** * Opacity of the mask (0-1) * @type {number} * @memberof Mask2DRequest */ opacity?: number | null; /** * Brightness of the mask * @type {number} * @memberof Mask2DRequest */ brightness?: number | null; /** * Contrast of the mask * @type {number} * @memberof Mask2DRequest */ contrast?: number | null; } export declare function Mask2DRequestFromJSON(json: any): Mask2DRequest; export declare function Mask2DRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): Mask2DRequest; export declare function Mask2DRequestToJSON(value?: Mask2DRequest | null): any;