@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.
19 lines (17 loc) • 686 B
text/typescript
import type { BulkTransitionSubmitInput } from './bulkTransitionSubmitInput';
/** Issue Bulk Transition Payload */
export interface IssueBulkTransitionPayload {
/**
* List of objects and each object has two properties:
*
* Issues that will be bulk transitioned. TransitionId that corresponds to a specific transition of issues that share
* the same workflow.
*/
bulkTransitionInputs: BulkTransitionSubmitInput[];
/**
* A boolean value that indicates whether to send a bulk change notification when the issues are being transitioned.
*
* If `true`, dispatches a bulk notification email to users about the updates.
*/
sendBulkNotification?: boolean;
}