@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) • 396 B
text/typescript
/** The details of a custom field context. */
export interface CustomFieldContext {
/** The description of the context. */
description: string;
/** The ID of the context. */
id: string;
/** Whether the context apply to all issue types. */
isAnyIssueType: boolean;
/** Whether the context is global. */
isGlobalContext: boolean;
/** The name of the context. */
name: string;
}