/**
 * 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.
 */
import { CommentDTO, PagedDTOAttachmentDTO } from './';
/**
 *
 * @export
 * @interface AttachmentCreateResultDTO
 */
export interface AttachmentCreateResultDTO {
    /**
     * Details of the comment included with the attachments.
     * @type {CommentDTO}
     * @memberof AttachmentCreateResultDTO
     */
    comment?: CommentDTO;
    /**
     * List of the attachments added.
     * @type {PagedDTOAttachmentDTO}
     * @memberof AttachmentCreateResultDTO
     */
    attachments?: PagedDTOAttachmentDTO;
}
export declare function AttachmentCreateResultDTOFromJSON(json: any): AttachmentCreateResultDTO;
export declare function AttachmentCreateResultDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachmentCreateResultDTO;
export declare function AttachmentCreateResultDTOToJSON(value?: AttachmentCreateResultDTO): any;
