A subscriber is a user or group that has the potential to receive notifications.

interface NotificationSubscriber {
    deliveryPreference?: NotificationSubscriberDeliveryPreference;
    flags?: SubscriberFlags;
    id?: string;
    preferredEmailAddress?: string;
}

Properties

Indicates how the subscriber should be notified by default.

id?: string

Identifier of the subscriber.

preferredEmailAddress?: string

Preferred email address of the subscriber. A null or empty value indicates no preferred email address has been set.