Details of an notification scheme.

interface CreateNotificationSchemeDetails {
    description?: string;
    name: string;
    notificationSchemeEvents?: NotificationSchemeEventDetails[];
}

Hierarchy

  • Record<string, unknown>
    • CreateNotificationSchemeDetails

Properties

description?: string

The description of the notification scheme.

name: string

The name of the notification scheme. Must be unique (case-insensitive).

notificationSchemeEvents?: NotificationSchemeEventDetails[]

The list of notifications which should be added to the notification scheme.