@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.
11 lines (10 loc) • 388 B
text/typescript
/** Associated field configuration scheme and project. */
export interface FieldConfigurationSchemeProjectAssociation {
/**
* The ID of the field configuration scheme. If the field configuration scheme ID is `null`, the operation assigns the
* default field configuration scheme.
*/
fieldConfigurationSchemeId?: string;
/** The ID of the project. */
projectId: string;
}