UNPKG

@jaricardodev/ews-javascript-api

Version:
17 lines (14 loc) 421 B
import {NotificationEvent} from "./NotificationEvent"; /** * @internal Structure to track a subscription and its associated notification events. */ export class NotificationGroup { /** * @internal Subscription Id */ SubscriptionId: string = null; /** * @internal Events in the response associated with the subscription id. */ Events: NotificationEvent[] = []; }