@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) • 307 B
text/typescript
export interface OldToNewSecurityLevelMappings {
/** The new issue security level ID. Providing null will clear the assigned old level from issues. */
newLevelId: string;
/** The old issue security level ID. Providing null will remap all issues without any assigned levels. */
oldLevelId: string;
}