/** * 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 VisaComment */ export interface VisaComment { /** * * @type {number} * @memberof VisaComment */ readonly id: number; /** * * @type {UserProject} * @memberof VisaComment */ readonly author: UserProject | null; /** * * @type {number} * @memberof VisaComment */ readonly visa_id: number; /** * * @type {string} * @memberof VisaComment */ content?: string; /** * * @type {Date} * @memberof VisaComment */ readonly created_at: Date; /** * * @type {Date} * @memberof VisaComment */ readonly updated_at: Date; } export declare function VisaCommentFromJSON(json: any): VisaComment; export declare function VisaCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): VisaComment; export declare function VisaCommentToJSON(value?: VisaComment | null): any;