@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
10 lines (8 loc) • 383 B
text/typescript
import type { AdditionalComment } from './additionalComment';
export interface AttachmentCreate {
/** List of IDs for the temporary attachments to be added to the customer request. */
temporaryAttachmentIds?: string[];
additionalComment?: AdditionalComment;
/** Indicates whether the attachments are to be public (true) or private/internal (false). */
public?: boolean;
}