@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.
19 lines (17 loc) • 658 B
text/typescript
import type { NotificationSchemeEvent } from './notificationSchemeEvent';
import type { Scope } from './scope';
/** Details about a notification scheme. */
export interface NotificationScheme {
/** Expand options that include additional notification scheme details in the response. */
expand?: string;
/** The ID of the notification scheme. */
id?: number;
self?: string;
/** The name of the notification scheme. */
name?: string;
/** The description of the notification scheme. */
description?: string;
/** The notification events and associated recipients. */
notificationSchemeEvents?: NotificationSchemeEvent[];
scope?: Scope;
}