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.

18 lines (17 loc) 633 B
export interface GetContextsForField { /** The ID of the custom field. */ fieldId: string; /** Whether to return contexts that apply to all issue types. */ isAnyIssueType?: boolean; /** Whether to return contexts that apply to all projects. */ isGlobalContext?: boolean; /** * The list of context IDs. To include multiple contexts, separate IDs with ampersand: * `contextId=10000&contextId=10001`. */ contextId?: number[]; /** 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; }