libs/eventing/src/lib/model/response/subscriptions.ts
Properties |
deliveryMethod |
deliveryMethod:
|
Type : Id
|
notification |
notification:
|
Type : Notification
|
user |
user:
|
Type : Id
|
import { EventingEndpoint, Id } from './common';
import { Notification } from './notifications';
export interface Subscription extends Id {
deliveryMethod: Id;
notification: Notification;
user: Id;
}
export interface SubscriptionResults extends EventingEndpoint<Subscription> { }