libs/eventing/src/lib/model/response/rules.ts
Properties |
eventTrigger |
eventTrigger:
|
Type : EventTrigger
|
eventType |
eventType:
|
Type : EventType
|
notificationLevel |
notificationLevel:
|
Type : NotificationLevel
|
import { EventTrigger, EventType, Id, NotificationLevel } from './common';
export interface Rule extends Id {
eventTrigger: EventTrigger;
eventType: EventType;
notificationLevel: NotificationLevel;
}