@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.
9 lines (7 loc) • 338 B
text/typescript
import type { CustomFieldValueUpdateRequest } from '../models';
export interface UpdateCustomFieldValue extends CustomFieldValueUpdateRequest {
/** The ID or key of the custom field. For example, `customfield_10010`. */
fieldIdOrKey: string;
/** Whether to generate a changelog for this update. */
generateChangelog?: boolean;
}