@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.
11 lines (10 loc) • 424 B
text/typescript
/**
* An issue ID with entity property values. See [Entity
* properties](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/) for more information.
*/
export interface IssueEntityPropertiesForMultiUpdate {
/** The ID of the issue. */
issueID?: number;
/** Entity properties to set on the issue. The maximum length of an issue property value is 32768 characters. */
properties?: unknown;
}