@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) • 447 B
text/typescript
/** The field configuration to issue type mapping. */
export interface FieldConfigurationToIssueTypeMapping {
/** The ID of the field configuration. */
fieldConfigurationId: string;
/**
* The ID of the issue type or _default_. When set to _default_ this field configuration issue type item applies to
* all issue types without a field configuration. An issue type can be included only once in a request.
*/
issueTypeId: string;
}