@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) • 354 B
text/typescript
import type { IssueBulkEditField } from './issueBulkEditField';
/** Bulk Edit Get Fields Response. */
export interface BulkEditGetFields {
/** The end cursor for use in pagination. */
endingBefore?: string;
/** List of all the fields */
fields?: IssueBulkEditField[];
/** The start cursor for use in pagination. */
startingAfter?: string;
}