@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.
15 lines (14 loc) • 503 B
text/typescript
/** Issue Bulk Delete Payload */
export interface IssueBulkDeletePayload {
/**
* List of issue IDs or keys which are to be bulk deleted. These IDs or keys can be from different projects and issue
* types.
*/
selectedIssueIdsOrKeys: string[];
/**
* A boolean value that indicates whether to send a bulk change notification when the issues are being deleted.
*
* If `true`, dispatches a bulk notification email to users about the updates.
*/
sendBulkNotification?: boolean;
}