@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.
7 lines (6 loc) • 308 B
text/typescript
export interface GetAllUserDataClassificationLevels {
/** Optional set of statuses to filter by. */
status?: ('PUBLISHED' | 'ARCHIVED' | 'DRAFT' | string)[];
/** Ordering of the results by a given field. If not provided, values will not be sorted. */
orderBy?: 'rank' | '-rank' | '+rank' | string;
}