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.

11 lines (10 loc) 269 B
export interface CustomerRequestFieldValue { /** ID of the field. */ fieldId?: string; /** Text label for the field. */ label?: string; /** Value of the field. */ value?: unknown; /** Value of the field rendered in the UI. */ renderedValue?: unknown; }