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