@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) • 445 B
text/typescript
/** Details of the contextual configuration for a custom field. */
export interface BulkContextualConfiguration {
/** The field configuration. */
configuration?: unknown;
/** The ID of the custom field. */
customFieldId: string;
/** The ID of the field context the configuration is associated with. */
fieldContextId: string;
/** The ID of the configuration. */
id: string;
/** The field value schema. */
schema?: unknown;
}