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.

14 lines (13 loc) 536 B
/** The details of a created custom field context. */ export interface CreateCustomFieldContext { /** The description of the context. */ description?: string; /** The ID of the context. */ id?: string; /** The list of issue types IDs for the context. If the list is empty, the context refers to all issue types. */ issueTypeIds?: string[]; /** The name of the context. */ name: string; /** The list of project IDs associated with the context. If the list is empty, the context is global. */ projectIds?: string[]; }