@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.
15 lines (14 loc) • 481 B
text/typescript
/** Details about a notification event. */
export interface NotificationEvent {
/**
* The ID of the event. The event can be a [Jira system
* event](https://confluence.atlassian.com/x/8YdKLg#Creatinganotificationscheme-eventsEvents) or a [custom
* event](https://confluence.atlassian.com/x/AIlKLg).
*/
id?: number;
/** The name of the event. */
name?: string;
/** The description of the event. */
description?: string;
templateEvent?: NotificationEvent;
}