@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) • 320 B
text/typescript
import type { ConnectCustomFieldValues } from '../models';
export interface UpdateIssueFields extends ConnectCustomFieldValues {
/** The ID of the transfer. */
transferId: string;
/** The Atlassian account ID of the impersonated user. This user must be a member of the site admin group. */
accountId: string;
}