@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.
12 lines (10 loc) • 538 B
text/typescript
import type { OldToNewSecurityLevelMappings } from '../models';
/** Issue security scheme, project, and remapping details. */
export interface AssociateSchemesToProjects {
/** The list of scheme levels which should be remapped to new levels of the issue security scheme. */
oldToNewSecurityLevelMappings: OldToNewSecurityLevelMappings[];
/** The ID of the project. */
projectId: string;
/** The ID of the issue security scheme. Providing null will clear the association with the issue security scheme. */
schemeId: string;
}