UNPKG

fetch-jsd

Version:

A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.

41 lines (40 loc) 1.32 kB
/** * 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 { AdditionalCommentDTO } from './'; /** * * @export * @interface AttachmentCreateDTO */ export interface AttachmentCreateDTO { /** * List of IDs for the temporary attachments to be added to the customer request. * @type {Array<string>} * @memberof AttachmentCreateDTO */ temporaryAttachmentIds?: Array<string>; /** * Comment about the attachments. * @type {AdditionalCommentDTO} * @memberof AttachmentCreateDTO */ additionalComment?: AdditionalCommentDTO; /** * Indicates whether the attachments are to be public (true) or private/internal (false). * @type {boolean} * @memberof AttachmentCreateDTO */ _public?: boolean; } export declare function AttachmentCreateDTOFromJSON(json: any): AttachmentCreateDTO; export declare function AttachmentCreateDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachmentCreateDTO; export declare function AttachmentCreateDTOToJSON(value?: AttachmentCreateDTO): any;