/** * 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 CommentRequest */ export interface CommentRequest { /** * * @type {string} * @memberof CommentRequest */ guid?: string; /** * * @type {Date} * @memberof CommentRequest */ date?: Date; /** * * @type {string} * @memberof CommentRequest */ author?: string | null; /** * * @type {string} * @memberof CommentRequest */ comment?: string; /** * * @type {string} * @memberof CommentRequest */ viewpoint_guid?: string | null; /** * * @type {string} * @memberof CommentRequest */ reply_to_comment_guid?: string | null; /** * * @type {string} * @memberof CommentRequest */ modified_author?: string | null; /** * Only used when using POST on the full-topic route to bind viewpoint with comment * @type {number} * @memberof CommentRequest */ viewpoint_temp_id?: number; } export declare function CommentRequestFromJSON(json: any): CommentRequest; export declare function CommentRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentRequest; export declare function CommentRequestToJSON(value?: CommentRequest | null): any;