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) 505 B
import type { ProjectCreateResourceIdentifier } from './projectCreateResourceIdentifier'; /** * Defines the payload for the field layout configuration. See * https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-field-configurations/#api-rest-api-3-fieldconfiguration-post */ export interface FieldLayoutConfiguration { /** Whether to show the field */ field?: boolean; pcri?: ProjectCreateResourceIdentifier; /** Whether the field is required */ required?: boolean; }