libs/eventing/src/lib/model/response/notifications.ts
Id
label: string
string
publication: Id
rules: Rule[]
Rule[]
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> { }