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 (12 loc) 578 B
import type { IssueFieldOptionConfiguration } from './issueFieldOptionConfiguration'; export interface IssueFieldOptionCreate { /** The option's name, which is displayed in Jira. */ value: string; /** * The properties of the option as arbitrary key-value pairs. These properties can be searched using JQL, if the * extractions (see https://developer.atlassian.com/cloud/jira/platform/modules/issue-field-option-property-index/) * are defined in the descriptor for the issue field module. */ properties?: unknown; config?: IssueFieldOptionConfiguration; }