@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) • 725 B
text/typescript
export interface GetStatusesById {
/**
* Use [expand](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/#expansion) to include additional
* information in the response. This parameter accepts a comma-separated list. Expand options include:
*
* - `usages` Returns the project and issue types that use the status in their workflow.
* - `workflowUsages` Returns the workflows that use the status.
*/
expand?: 'usages' | 'workflowUsages' | ('usages' | 'workflowUsages')[] | string | string[];
/**
* The list of status IDs. To include multiple IDs, provide an ampersand-separated list. For example,
* id=10000&id=10001.
*
* Min items `1`, Max items `50`
*/
id: string[];
}