fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
35 lines (34 loc) • 1.15 kB
TypeScript
/**
* 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;