libs/eventing/src/lib/model/response/notifications.ts
Properties |
|
label |
label:
|
Type : string
|
publication |
publication:
|
Type : Id
|
rules |
rules:
|
Type : Rule[]
|
Optional |
import { EventingEndpoint, Id } from './common';
import { Rule } from './rules';
export interface Notification extends Id {
label: string;
publication: Id;
rules?: Rule[];
}
export interface NotificationResults extends EventingEndpoint<Notification> { }