@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.
10 lines (8 loc) • 550 B
text/typescript
import type { NotificationSchemeEventIDPayload } from './notificationSchemeEventIDPayload';
import type { NotificationSchemeNotificationDetailsPayload } from './notificationSchemeNotificationDetailsPayload';
/** The payload for creating a notification scheme event. Defines which notifications should be sent for a specific event */
export interface NotificationSchemeEventPayload {
event?: NotificationSchemeEventIDPayload;
/** The configuration for notification recipents */
notifications?: NotificationSchemeNotificationDetailsPayload[];
}