import { NameValue } from '@varmasagi/ics-common-types'; import { NotificationRule } from './notification-rule'; import { Time } from './time'; export class Notification { applicationId: any; platformId: any; rule: NotificationRule; frequency: NameValue; types: NameValue[]; zone: NameValue; time: Time; constructor() { this.types = []; this.time = new Time(); } }