projects/core/src/model/notification-preference.model.ts
Properties |
| channel |
channel:
|
Type : string
|
| Optional |
| enabled |
enabled:
|
Type : boolean
|
| Optional |
| value |
value:
|
Type : string
|
| Optional |
| visible |
visible:
|
Type : boolean
|
| Optional |
export interface NotificationPreference {
channel?: string;
value?: string;
enabled?: boolean;
visible?: boolean;
}
export interface NotificationPreferenceList {
preferences?: NotificationPreference[];
}