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