@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.
16 lines (15 loc) • 597 B
text/typescript
export interface GetAllFieldConfigurations {
/** The index of the first item to return in a page of results (page offset). */
startAt?: number;
/** The maximum number of items to return per page. */
maxResults?: number;
/**
* The list of field configuration IDs. To include multiple IDs, provide an ampersand-separated list. For example,
* `id=10000&id=10001`.
*/
id?: number[];
/** If _true_ returns default field configurations only. */
isDefault?: boolean;
/** The query string used to match against field configuration names and descriptions. */
query?: string;
}