UNPKG

fetch-jsd

Version:

28 lines (27 loc) 831 B
/** * Service Desk Public REST API * Public REST API for Jira Service Desk * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * * * 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 AdditionalCommentDTO */ export interface AdditionalCommentDTO { /** * Content of the comment. * @type {string} * @memberof AdditionalCommentDTO */ body?: string; } export declare function AdditionalCommentDTOFromJSON(json: any): AdditionalCommentDTO; export declare function AdditionalCommentDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdditionalCommentDTO; export declare function AdditionalCommentDTOToJSON(value?: AdditionalCommentDTO): any;