Subscriber.

interface Subscriber {
    emailConfig?: SubscriberEmailConfig;
    id: string;
    name: string;
    webhookConfig?: SubscriberWebhookConfig;
}

Properties

emailConfig?: SubscriberEmailConfig

Email address of subscriber.

One-of ('config'): at most one of 'emailConfig', 'webhookConfig' could be set.

id: string

Subscriber ID.

name: string

Subscriber name.

webhookConfig?: SubscriberWebhookConfig

Webhook URI of subscriber.

One-of ('config'): at most one of 'emailConfig', 'webhookConfig' could be set.