/** * TrainX API * ### The TrainX API documentation In order to use the Swagger, please retrieve your JWT at the following link: [https://trainx.getcockpit.io/jwt](https://trainx.getcockpit.io/jwt) and add it to the bearer field in the authorization section. * * The version of the OpenAPI document: v1 * * * 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 PatchCommentDtoApi { /** * String that represents the response to the comment. */ response?: string; /** * String that represents the id of the user that updated the comment. This property is optional because it is only used when override is necessary. */ updatedBy?: string; /** * The text (content) of the comment */ text?: string; /** * The path of an optional image associated with the comment */ image?: string; /** * Optional boolean used to specify whether or not the comment has been read. If not provided, the default value is false. */ isRead?: boolean; }