/**
 * 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 CommentCreateDTO
 */
export interface CommentCreateDTO {
    /**
     * Content of the comment.
     * @type {string}
     * @memberof CommentCreateDTO
     */
    body?: string;
    /**
     * Indicates whether the comment is public (true) or private/internal (false).
     * @type {boolean}
     * @memberof CommentCreateDTO
     */
    _public?: boolean;
}
export declare function CommentCreateDTOFromJSON(json: any): CommentCreateDTO;
export declare function CommentCreateDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentCreateDTO;
export declare function CommentCreateDTOToJSON(value?: CommentCreateDTO): any;
