@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.
8 lines (7 loc) • 328 B
text/typescript
/** Details of changes to a priority scheme's priorities that require suggested priority mappings. */
export interface SuggestedMappingsForPrioritiesRequestBean {
/** The ids of priorities being removed from the scheme. */
add?: number[];
/** The ids of priorities being removed from the scheme. */
remove?: number[];
}