UNPKG

@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.

12 lines (10 loc) 523 B
import type { IssueBulkTransitionForWorkflow } from './issueBulkTransitionForWorkflow'; /** Bulk Transition Get Available Transitions Response. */ export interface BulkTransitionGetAvailableTransitions { /** List of available transitions for bulk transition operation for requested issues grouped by workflow */ availableTransitions?: IssueBulkTransitionForWorkflow[]; /** The end cursor for use in pagination. */ endingBefore?: string; /** The start cursor for use in pagination. */ startingAfter?: string; }