Where to send tracking information to.

Note that this is technically a oneOf field, but there is only one option at the moment, so it was simpler to implement as this.

If more options are added, TrackingRecipient will become a OneOf type, and a new TrackingRecipientOption will be created with the various options.

This would be a backwards-compatible change.

interface TrackingRecipient {
    email: string;
    [field_name: string]: undefined | JsonValue;
}

Hierarchy (View Summary)

Indexable

Properties

Properties

email: string

The email address to send notifications to