UNPKG

@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.

13 lines (12 loc) 473 B
/** The field configuration for an issue type. */ export interface FieldConfigurationIssueTypeItem { /** The ID of the field configuration scheme. */ fieldConfigurationSchemeId: 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. */ issueTypeId: string; /** The ID of the field configuration. */ fieldConfigurationId: string; }