Details about a notification scheme.

interface NotificationScheme {
    description?: string;
    expand?: string;
    id?: number;
    name?: string;
    notificationSchemeEvents?: NotificationSchemeEvent[];
    projects?: number[];
    scope?: Scope;
    self?: string;
}

Properties

description?: string

The description of the notification scheme.

expand?: string

Expand options that include additional notification scheme details in the response.

id?: number

The ID of the notification scheme.

name?: string

The name of the notification scheme.

notificationSchemeEvents?: NotificationSchemeEvent[]

The notification events and associated recipients.

projects?: number[]

The list of project IDs associated with the notification scheme.

scope?: Scope

The scope of the notification scheme.

self?: string