import type { EmailPriority } from "./emailPriority"; import type { EventNotificationSubscriptionFilter } from "./eventNotificationSubscriptionFilter"; export interface EventNotificationSubscription extends NewEventNotificationSubscription { EmailDigestLastProcessed?: string; EmailDigestLastProcessedEventAutoId?: number; WebhookLastProcessed?: string; WebhookLastProcessedEventAutoId?: number; } export interface NewEventNotificationSubscription { EmailTeams: string[]; EmailFrequencyPeriod: string; EmailShowDatesInTimeZoneId: string; EmailPriority: EmailPriority; Filter: EventNotificationSubscriptionFilter; WebhookURI: string; WebhookTeams: string[]; WebhookTimeout: string; WebhookHeaderKey: string; WebhookHeaderValue: string; }