/** * 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 { UserProject } from './UserProject'; import { VisaComment } from './VisaComment'; import { VisaValidation } from './VisaValidation'; /** * * @export * @interface Visa */ export interface Visa { /** * * @type {number} * @memberof Visa */ readonly id: number; /** * * @type {Array} * @memberof Visa */ readonly validations: Array; /** * Validation IDs where one or more validators have no longer access to the visa document. * @type {Array} * @memberof Visa */ readonly validations_in_error: Array; /** * * @type {UserProject} * @memberof Visa */ readonly creator: UserProject | null; /** * * @type {number} * @memberof Visa */ readonly document_id: number; /** * * `O` - opened * * `P` - paused * * `C` - closed * @type {string} * @memberof Visa */ readonly status: VisaStatusEnum; /** * Description of the visa * @type {string} * @memberof Visa */ description?: string | null; /** * * @type {Array} * @memberof Visa */ readonly comments: Array; /** * * @type {Date} * @memberof Visa */ deadline?: Date | null; /** * * @type {Date} * @memberof Visa */ readonly created_at: Date; /** * * @type {Date} * @memberof Visa */ readonly updated_at: Date; } /** * @export * @enum {string} */ export declare enum VisaStatusEnum { O = "O", P = "P", C = "C" } export declare function VisaFromJSON(json: any): Visa; export declare function VisaFromJSONTyped(json: any, ignoreDiscriminator: boolean): Visa; export declare function VisaToJSON(value?: Visa | null): any;