/** * 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'; /** * * @export * @interface VisaValidation */ export interface VisaValidation { /** * * @type {number} * @memberof VisaValidation */ readonly id: number; /** * * @type {number} * @memberof VisaValidation */ readonly visa_id: number; /** * * @type {UserProject} * @memberof VisaValidation */ readonly validator: UserProject | null; /** * * `P` - pending * * `A` - accepted * * `D` - denied * @type {string} * @memberof VisaValidation */ readonly status: VisaValidationStatusEnum; /** * Return True if validator has commented the visa * @type {boolean} * @memberof VisaValidation */ readonly has_commented: boolean; /** * * @type {Date} * @memberof VisaValidation */ readonly created_at: Date; /** * * @type {Date} * @memberof VisaValidation */ readonly updated_at: Date; /** * * @type {string} * @memberof VisaValidation */ attachment?: string | null; } /** * @export * @enum {string} */ export declare enum VisaValidationStatusEnum { P = "P", A = "A", D = "D" } export declare function VisaValidationFromJSON(json: any): VisaValidation; export declare function VisaValidationFromJSONTyped(json: any, ignoreDiscriminator: boolean): VisaValidation; export declare function VisaValidationToJSON(value?: VisaValidation | null): any;