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) 530 B
/** A field within a field configuration. */ export interface FieldConfigurationItem { /** The ID of the field within the field configuration. */ id: string; /** The description of the field within the field configuration. */ description?: string; /** Whether the field is hidden in the field configuration. */ isHidden?: boolean; /** Whether the field is required in the field configuration. */ isRequired?: boolean; /** The renderer type for the field within the field configuration. */ renderer?: string; }