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