@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) • 425 B
text/typescript
/** Details of an item associated with the changed record. */
export interface AssociatedItem {
/** The ID of the associated record. */
id?: string;
/** The name of the associated record. */
name?: string;
/** The ID of the associated parent record. */
parentId?: string;
/** The name of the associated parent record. */
parentName?: string;
/** The type of the associated record. */
typeName?: string;
}