@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.
8 lines (7 loc) • 338 B
text/typescript
/** Details of a custom field context. */
export interface CustomFieldContextUpdateDetails {
/** The description of the custom field context. The maximum length is 255 characters. */
description?: string;
/** The name of the custom field context. The name must be unique. The maximum length is 255 characters. */
name?: string;
}