postmark

  • Version 4.0.2
  • Published
  • 335 kB
  • 1 dependency
  • MIT license

Install

npm i postmark
yarn add postmark
pnpm add postmark

Overview

Official Node.js client library for the Postmark HTTP API - https://www.postmarkapp.com

Index

Classes

Namespaces

Classes

class AccountClient

class AccountClient extends BaseClient {}

    constructor

    constructor(accountToken: string, configOptions?: ClientOptions.Configuration);
    • Create a new AccountClient

      Parameter accountToken

      The account token that should be used with requests.

      Parameter configOptions

      Various options to customize client behavior.

    method createDomain

    createDomain: (
    options: CreateDomainRequest,
    callback?: Callback<DomainDetails>
    ) => Promise<DomainDetails>;
    • Create a new Domain.

      Parameter options

      The options to be used to create new Domain.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method createSenderSignature

    createSenderSignature: (
    options: CreateSignatureRequest,
    callback?: Callback<SignatureDetails>
    ) => Promise<SignatureDetails>;
    • Create a new Sender Signature.

      Parameter options

      The options to be used to create new Sender Signature.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method createServer

    createServer: (
    options: CreateServerRequest,
    callback?: Callback<Server>
    ) => Promise<Server>;
    • Create a new Server.

      Parameter options

      The options to be used to create new Server.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method deleteDomain

    deleteDomain: (
    id: number,
    callback?: Callback<DefaultResponse>
    ) => Promise<DefaultResponse>;
    • Delete a Domain.

      Parameter id

      The ID of the Domain you wish to delete.

      Parameter options

      The options to be used in create Domain.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method deleteSenderSignature

    deleteSenderSignature: (
    id: number,
    callback?: Callback<DefaultResponse>
    ) => Promise<DefaultResponse>;
    • Delete a Domain.

      Parameter id

      The ID of the Domain you wish to delete.

      Parameter options

      The options to be used in create Domain.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method deleteServer

    deleteServer: (
    id: number,
    callback?: Callback<DefaultResponse>
    ) => Promise<DefaultResponse>;
    • Modify the Server associated with this Client.

      Parameter id

      The ID of the Domain you wish to delete.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method editDomain

    editDomain: (
    id: number,
    options: UpdateDomainRequest,
    callback?: Callback<DomainDetails>
    ) => Promise<DomainDetails>;
    • Update a Domain.

      Parameter id

      The ID of the Domain you wish to update.

      Parameter domain

      The values on the Domain you wish to update.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method editSenderSignature

    editSenderSignature: (
    id: number,
    options: UpdateSignatureRequest,
    callback?: Callback<SignatureDetails>
    ) => Promise<SignatureDetails>;
    • Update a Sender Signature.

      Parameter id

      The ID of the Sender Signature for which you wish to update.

      Parameter options

      The values on the Sender Signature you wish to update.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method editServer

    editServer: (
    id: number,
    options: UpdateServerRequest,
    callback?: Callback<Server>
    ) => Promise<Server>;
    • Modify the Server associated with this Client.

      Parameter id

      The ID of the Server you wish to update.

      Parameter options

      The options to be used to create new Server.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method getDataRemovalStatus

    getDataRemovalStatus: (
    id: number,
    callback?: Callback<DataRemovalStatus>
    ) => Promise<DataRemovalStatus>;
    • Retrieve a single data removal status by ID.

      Parameter id

      The ID of the DataRemoval for which you wish to retrieve details.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method getDomain

    getDomain: (
    id: number,
    callback?: Callback<DomainDetails>
    ) => Promise<DomainDetails>;
    • Retrieve a single Domain by ID.

      Parameter id

      The ID of the Domain for which you wish to retrieve details.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method getDomains

    getDomains: (
    filter?: FilteringParameters,
    callback?: Callback<Domains>
    ) => Promise<Domains>;
    • Retrieve a batch of Domains.

      Parameter filter

      An optional filter for which data is retrieved.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method getSenderSignature

    getSenderSignature: (
    id: number,
    callback?: Callback<SignatureDetails>
    ) => Promise<SignatureDetails>;
    • Retrieve a single Sender Signature by ID.

      Parameter id

      The ID of the Sender Signature for which you wish to retrieve details.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method getSenderSignatures

    getSenderSignatures: (
    filter?: FilteringParameters,
    callback?: Callback<Signatures>
    ) => Promise<Signatures>;
    • Retrieve a batch of Sender Signatures.

      Parameter filter

      An optional filter for which data is retrieved.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method getServer

    getServer: (id: number, callback?: Callback<Server>) => Promise<Server>;
    • Retrieve a single server by ID.

      Parameter id

      The ID of the Server for which you wish to retrieve details.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method getServers

    getServers: (
    filter?: ServerFilteringParameters,
    callback?: Callback<Servers>
    ) => Promise<Servers>;
    • Retrieve a list of Servers.

      Parameter filter

      An optional filter for which data is retrieved.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method pushTemplates

    pushTemplates: (
    options: TemplatesPushRequest,
    callback?: Callback<TemplatesPush>
    ) => Promise<TemplatesPush>;
    • Request a push of templates from one server to another.

      Parameter options

      details for pushing templates from one place to another.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method requestDataRemoval

    requestDataRemoval: (
    options: DataRemovalRequest,
    callback?: Callback<DataRemovalStatus>
    ) => Promise<DataRemovalStatus>;
    • Request a data removal.

      Parameter options

      details for creating data removal request

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method requestNewDKIMForSenderSignature

    requestNewDKIMForSenderSignature: (
    id: number,
    callback?: Callback<SignatureDetails>
    ) => Promise<SignatureDetails>;
    • Request that the SPF records for Sender Signature be verified.

      Parameter id

      The ID of the Sender Signature.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method resendSenderSignatureConfirmation

    resendSenderSignatureConfirmation: (
    id: number,
    callback?: Callback<DefaultResponse>
    ) => Promise<DefaultResponse>;
    • Request a new confirmation email to be sent to the email address associated with a Sender Signature.

      Parameter id

      The ID of the Sender Signature.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method rotateDomainDKIM

    rotateDomainDKIM: (
    id: number,
    callback?: Callback<DomainDetails>
    ) => Promise<DomainDetails>;
    • Trigger Domain DKIM key verification.

      Parameter id

      The ID of the Domain you wish to trigger DKIM verification for.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method verifyDomainDKIM

    verifyDomainDKIM: (
    id: number,
    callback?: Callback<DomainDetails>
    ) => Promise<DomainDetails>;
    • Trigger Domain DKIM key verification.

      Parameter id

      The ID of the Domain you wish to trigger DKIM verification for.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method verifyDomainReturnPath

    verifyDomainReturnPath: (
    id: number,
    callback?: Callback<DomainDetails>
    ) => Promise<DomainDetails>;
    • Trigger Domain DKIM key verification.

      Parameter id

      The ID of the Domain you wish to trigger DKIM verification for.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method verifyDomainSPF

    verifyDomainSPF: (
    id: number,
    callback?: Callback<DomainDetails>
    ) => Promise<DomainDetails>;
    • Trigger Domain DKIM key verification.

      Parameter id

      The ID of the Domain you wish to trigger DKIM verification for.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    method verifySenderSignatureSPF

    verifySenderSignatureSPF: (
    id: number,
    callback?: Callback<SignatureDetails>
    ) => Promise<SignatureDetails>;
    • Request that the SPF records for Sender Signature be verified.

      Parameter id

      The ID of the Sender Signature.

      Parameter callback

      If the callback is provided, it will be passed to the resulting promise as a continuation.

      Returns

      A promise that will complete when the API responds (or an error occurs).

    class AdminClient

    class AccountClient extends BaseClient {}

      constructor

      constructor(accountToken: string, configOptions?: ClientOptions.Configuration);
      • Create a new AccountClient

        Parameter accountToken

        The account token that should be used with requests.

        Parameter configOptions

        Various options to customize client behavior.

      method createDomain

      createDomain: (
      options: CreateDomainRequest,
      callback?: Callback<DomainDetails>
      ) => Promise<DomainDetails>;
      • Create a new Domain.

        Parameter options

        The options to be used to create new Domain.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method createSenderSignature

      createSenderSignature: (
      options: CreateSignatureRequest,
      callback?: Callback<SignatureDetails>
      ) => Promise<SignatureDetails>;
      • Create a new Sender Signature.

        Parameter options

        The options to be used to create new Sender Signature.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method createServer

      createServer: (
      options: CreateServerRequest,
      callback?: Callback<Server>
      ) => Promise<Server>;
      • Create a new Server.

        Parameter options

        The options to be used to create new Server.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method deleteDomain

      deleteDomain: (
      id: number,
      callback?: Callback<DefaultResponse>
      ) => Promise<DefaultResponse>;
      • Delete a Domain.

        Parameter id

        The ID of the Domain you wish to delete.

        Parameter options

        The options to be used in create Domain.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method deleteSenderSignature

      deleteSenderSignature: (
      id: number,
      callback?: Callback<DefaultResponse>
      ) => Promise<DefaultResponse>;
      • Delete a Domain.

        Parameter id

        The ID of the Domain you wish to delete.

        Parameter options

        The options to be used in create Domain.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method deleteServer

      deleteServer: (
      id: number,
      callback?: Callback<DefaultResponse>
      ) => Promise<DefaultResponse>;
      • Modify the Server associated with this Client.

        Parameter id

        The ID of the Domain you wish to delete.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method editDomain

      editDomain: (
      id: number,
      options: UpdateDomainRequest,
      callback?: Callback<DomainDetails>
      ) => Promise<DomainDetails>;
      • Update a Domain.

        Parameter id

        The ID of the Domain you wish to update.

        Parameter domain

        The values on the Domain you wish to update.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method editSenderSignature

      editSenderSignature: (
      id: number,
      options: UpdateSignatureRequest,
      callback?: Callback<SignatureDetails>
      ) => Promise<SignatureDetails>;
      • Update a Sender Signature.

        Parameter id

        The ID of the Sender Signature for which you wish to update.

        Parameter options

        The values on the Sender Signature you wish to update.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method editServer

      editServer: (
      id: number,
      options: UpdateServerRequest,
      callback?: Callback<Server>
      ) => Promise<Server>;
      • Modify the Server associated with this Client.

        Parameter id

        The ID of the Server you wish to update.

        Parameter options

        The options to be used to create new Server.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method getDataRemovalStatus

      getDataRemovalStatus: (
      id: number,
      callback?: Callback<DataRemovalStatus>
      ) => Promise<DataRemovalStatus>;
      • Retrieve a single data removal status by ID.

        Parameter id

        The ID of the DataRemoval for which you wish to retrieve details.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method getDomain

      getDomain: (
      id: number,
      callback?: Callback<DomainDetails>
      ) => Promise<DomainDetails>;
      • Retrieve a single Domain by ID.

        Parameter id

        The ID of the Domain for which you wish to retrieve details.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method getDomains

      getDomains: (
      filter?: FilteringParameters,
      callback?: Callback<Domains>
      ) => Promise<Domains>;
      • Retrieve a batch of Domains.

        Parameter filter

        An optional filter for which data is retrieved.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method getSenderSignature

      getSenderSignature: (
      id: number,
      callback?: Callback<SignatureDetails>
      ) => Promise<SignatureDetails>;
      • Retrieve a single Sender Signature by ID.

        Parameter id

        The ID of the Sender Signature for which you wish to retrieve details.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method getSenderSignatures

      getSenderSignatures: (
      filter?: FilteringParameters,
      callback?: Callback<Signatures>
      ) => Promise<Signatures>;
      • Retrieve a batch of Sender Signatures.

        Parameter filter

        An optional filter for which data is retrieved.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method getServer

      getServer: (id: number, callback?: Callback<Server>) => Promise<Server>;
      • Retrieve a single server by ID.

        Parameter id

        The ID of the Server for which you wish to retrieve details.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method getServers

      getServers: (
      filter?: ServerFilteringParameters,
      callback?: Callback<Servers>
      ) => Promise<Servers>;
      • Retrieve a list of Servers.

        Parameter filter

        An optional filter for which data is retrieved.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method pushTemplates

      pushTemplates: (
      options: TemplatesPushRequest,
      callback?: Callback<TemplatesPush>
      ) => Promise<TemplatesPush>;
      • Request a push of templates from one server to another.

        Parameter options

        details for pushing templates from one place to another.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method requestDataRemoval

      requestDataRemoval: (
      options: DataRemovalRequest,
      callback?: Callback<DataRemovalStatus>
      ) => Promise<DataRemovalStatus>;
      • Request a data removal.

        Parameter options

        details for creating data removal request

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method requestNewDKIMForSenderSignature

      requestNewDKIMForSenderSignature: (
      id: number,
      callback?: Callback<SignatureDetails>
      ) => Promise<SignatureDetails>;
      • Request that the SPF records for Sender Signature be verified.

        Parameter id

        The ID of the Sender Signature.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method resendSenderSignatureConfirmation

      resendSenderSignatureConfirmation: (
      id: number,
      callback?: Callback<DefaultResponse>
      ) => Promise<DefaultResponse>;
      • Request a new confirmation email to be sent to the email address associated with a Sender Signature.

        Parameter id

        The ID of the Sender Signature.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method rotateDomainDKIM

      rotateDomainDKIM: (
      id: number,
      callback?: Callback<DomainDetails>
      ) => Promise<DomainDetails>;
      • Trigger Domain DKIM key verification.

        Parameter id

        The ID of the Domain you wish to trigger DKIM verification for.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method verifyDomainDKIM

      verifyDomainDKIM: (
      id: number,
      callback?: Callback<DomainDetails>
      ) => Promise<DomainDetails>;
      • Trigger Domain DKIM key verification.

        Parameter id

        The ID of the Domain you wish to trigger DKIM verification for.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method verifyDomainReturnPath

      verifyDomainReturnPath: (
      id: number,
      callback?: Callback<DomainDetails>
      ) => Promise<DomainDetails>;
      • Trigger Domain DKIM key verification.

        Parameter id

        The ID of the Domain you wish to trigger DKIM verification for.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method verifyDomainSPF

      verifyDomainSPF: (
      id: number,
      callback?: Callback<DomainDetails>
      ) => Promise<DomainDetails>;
      • Trigger Domain DKIM key verification.

        Parameter id

        The ID of the Domain you wish to trigger DKIM verification for.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      method verifySenderSignatureSPF

      verifySenderSignatureSPF: (
      id: number,
      callback?: Callback<SignatureDetails>
      ) => Promise<SignatureDetails>;
      • Request that the SPF records for Sender Signature be verified.

        Parameter id

        The ID of the Sender Signature.

        Parameter callback

        If the callback is provided, it will be passed to the resulting promise as a continuation.

        Returns

        A promise that will complete when the API responds (or an error occurs).

      class Attachment

      class Attachment {}
      • Attachment content

        Parameter Name

        name of the attachment, for example book.pdf

        Parameter Content

        Base64 encoded content, for example: fs.readFileSync('/Folder/book.pdf').toString('base64')

        Parameter ContentID

        id of the attachment, in case we are referencing it, for example: cid:123book.pdf

        Parameter ContentType

        content type (json, image, etc)

        Parameter ContentLength

        length of the message

      constructor

      constructor(
      Name: string,
      Content: string,
      ContentType: string,
      ContentID?: string,
      ContentLength?: number
      );

        property Content

        Content: string;

          property ContentID

          ContentID: string;

            property ContentLength

            ContentLength?: number;

              property ContentType

              ContentType: string;

                property Name

                Name: string;

                  class Client

                  class ServerClient extends BaseClient {}
                  • Server client class that can be used to interact with an individual Postmark Server.

                  constructor

                  constructor(serverToken: string, configOptions?: ClientOptions.Configuration);
                  • Create a client.

                    Parameter serverToken

                    The token for the server that you wish to interact with.

                    Parameter configOptions

                    Options to customize the behavior of the this client.

                  method activateBounce

                  activateBounce: (
                  id: number,
                  callback?: Callback<BounceActivationResponse>
                  ) => Promise<BounceActivationResponse>;
                  • Activate email address that was deactivated due to a Bounce.

                    Parameter id

                    The ID of the Bounce for which you wish to activate the associated email.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method archiveMessageStream

                  archiveMessageStream: (
                  id: string,
                  callback?: Callback<MessageStreamArchiveResponse>
                  ) => Promise<MessageStreamArchiveResponse>;
                  • Archive a message stream on the associated server.

                    Parameter options

                    Configuration options to be used when creating message stream on the server.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method bypassBlockedInboundMessage

                  bypassBlockedInboundMessage: (
                  messageId: string,
                  callback?: Callback<DefaultResponse>
                  ) => Promise<DefaultResponse>;
                  • Cause an Inbound Message to bypass filtering rules defined on this Client's associated Server.

                    Parameter messageId

                    The ID of the Inbound Message for which you wish to bypass the filtering rules.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method createInboundRuleTrigger

                  createInboundRuleTrigger: (
                  options: CreateInboundRuleRequest,
                  callback?: Callback<InboundRule>
                  ) => Promise<InboundRule>;
                  • Create an Inbound Rule Trigger.

                    Parameter options

                    Configuration options to be used when creating this Trigger.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method createMessageStream

                  createMessageStream: (
                  options: CreateMessageStreamRequest,
                  callback?: Callback<MessageStream>
                  ) => Promise<MessageStream>;
                  • Create a message stream on the associated server.

                    Parameter options

                    Configuration options to be used when creating message stream on the server.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method createSuppressions

                  createSuppressions: (
                  messageStream: string,
                  options: CreateSuppressionsRequest,
                  callback?: Callback<SuppressionStatuses>
                  ) => Promise<SuppressionStatuses>;
                  • Add email addresses to a suppressions list on a message stream on a server.

                    Parameter messageStream

                    Select message stream

                    Parameter options

                    Suppressions you wish to add.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method createTemplate

                  createTemplate: (
                  options: CreateTemplateRequest,
                  callback?: Callback<Template>
                  ) => Promise<Template>;
                  • Create a new template on the associated server.

                    Parameter options

                    Configuration options to be used to create the Template.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method createWebhook

                  createWebhook: (
                  options: CreateWebhookRequest,
                  callback?: Callback<Webhook>
                  ) => Promise<Webhook>;
                  • Create a Webhook on the associated server.

                    Parameter options

                    Configuration options to be used when creating Webhook trigger.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method deleteInboundRuleTrigger

                  deleteInboundRuleTrigger: (
                  id: number,
                  callback?: Callback<DefaultResponse>
                  ) => Promise<DefaultResponse>;
                  • Delete an Inbound Rule Trigger.

                    Parameter id

                    The ID of the Inbound Rule Trigger you wish to delete.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method deleteSuppressions

                  deleteSuppressions: (
                  messageStream: string,
                  options: DeleteSuppressionsRequest,
                  callback?: Callback<SuppressionStatuses>
                  ) => Promise<SuppressionStatuses>;
                  • Delete email addresses from a suppressions list on a message stream on a server.

                    Parameter messageStream

                    Select message stream

                    Parameter options

                    Suppressions you wish to delete.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method deleteTemplate

                  deleteTemplate: (
                  idOrAlias: number | string,
                  callback?: Callback<DefaultResponse>
                  ) => Promise<DefaultResponse>;
                  • Delete a template associated with this server.

                    Parameter idOrAlias

                    ID or template alias you wish to delete.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method deleteWebhook

                  deleteWebhook: (
                  id: number,
                  callback?: Callback<DefaultResponse>
                  ) => Promise<DefaultResponse>;
                  • Delete an existing Webhook.

                    Parameter id

                    The ID of the Webhook you wish to delete.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method editMessageStream

                  editMessageStream: (
                  id: string,
                  options: UpdateMessageStreamRequest,
                  callback?: Callback<MessageStream>
                  ) => Promise<MessageStream>;
                  • Update message stream on the associated server.

                    Parameter id

                    Id of the webhook you wish to update.

                    Parameter options

                    Webhook options you wish to update.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method editServer

                  editServer: (
                  options: UpdateServerRequest,
                  callback?: Callback<Server>
                  ) => Promise<Server>;
                  • Modify the Server associated with this Client.

                    Parameter options

                    The options you wish to modify.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method editTemplate

                  editTemplate: (
                  idOrAlias: number | string,
                  options: UpdateTemplateRequest,
                  callback?: Callback<Template>
                  ) => Promise<Template>;
                  • Update a template on the associated server.

                    Parameter idOrAlias

                    Id or alias of the template you wish to update.

                    Parameter options

                    Template options you wish to update.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method editWebhook

                  editWebhook: (
                  id: number,
                  options: UpdateWebhookRequest,
                  callback?: Callback<Webhook>
                  ) => Promise<Webhook>;
                  • Update Webhook on the associated server.

                    Parameter id

                    Id of the webhook you wish to update.

                    Parameter options

                    Webhook options you wish to update.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getBounce

                  getBounce: (id: number, callback?: Callback<Bounce>) => Promise<Bounce>;
                  • Get details for a specific Bounce.

                    Parameter id

                    The ID of the Bounce you wish to retrieve.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getBounceCounts

                  getBounceCounts: (
                  filter?: StatisticsFilteringParameters,
                  callback?: Callback<BounceCounts>
                  ) => Promise<BounceCounts>;
                  • Get statistiscs on emails that bounced after being sent from the Server associated with this Client.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getBounceDump

                  getBounceDump: (
                  id: number,
                  callback?: Callback<BounceDump>
                  ) => Promise<BounceDump>;
                  • Get a Bounce Dump for a specific Bounce.

                    Parameter id

                    The ID of the Bounce for which you wish to retrieve Bounce Dump.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getBounces

                  getBounces: (
                  filter?: BounceFilteringParameters,
                  callback?: Callback<Bounces>
                  ) => Promise<Bounces>;
                  • Get a batch of bounces.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getClickBrowserUsage

                  getClickBrowserUsage: (
                  filter?: StatisticsFilteringParameters,
                  callback?: Callback<BrowserUsageCounts>
                  ) => Promise<BrowserUsageCounts>;
                  • Get browser family statistics for tracked links for messages sent from the Server associated with this Client.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getClickCounts

                  getClickCounts: (
                  filter?: StatisticsFilteringParameters,
                  callback?: Callback<ClickCounts>
                  ) => Promise<ClickCounts>;
                  • Get total clicks statistics for tracked links for messages sent from the Server associated with this Client.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getClickLocation

                  getClickLocation: (
                  filter?: StatisticsFilteringParameters,
                  callback?: Callback<ClickLocationCounts>
                  ) => Promise<ClickLocationCounts>;
                  • Get click location (in HTML or Text body of the email) statistics for tracked links for messages sent from the Server associated with this Client.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getClickPlatformUsage

                  getClickPlatformUsage: (
                  filter?: StatisticsFilteringParameters,
                  callback?: Callback<ClickPlatformUsageCounts>
                  ) => Promise<ClickPlatformUsageCounts>;
                  • Get browser platform statistics for tracked links for messages sent from the Server associated with this Client.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getDeliveryStatistics

                  getDeliveryStatistics: (
                  callback?: Callback<DeliveryStatistics>
                  ) => Promise<DeliveryStatistics>;
                  • Get bounce statistic information for the associated Server.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getEmailOpenClientUsage

                  getEmailOpenClientUsage: (
                  filter?: StatisticsFilteringParameters,
                  callback?: Callback<EmailClientUsageCounts>
                  ) => Promise<EmailClientUsageCounts>;
                  • Get statistics on which Email Clients were used to open messages sent from the Server associated with this Client.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getEmailOpenCounts

                  getEmailOpenCounts: (
                  filter?: StatisticsFilteringParameters,
                  callback?: Callback<OpenCounts>
                  ) => Promise<OpenCounts>;
                  • Get Open statistics for messages sent from the Server associated with this Client.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getEmailOpenPlatformUsage

                  getEmailOpenPlatformUsage: (
                  filter?: StatisticsFilteringParameters,
                  callback?: Callback<EmailPlaformUsageCounts>
                  ) => Promise<EmailPlaformUsageCounts>;
                  • Get Email Client Platform statistics for messages sent from the Server associated with this Client.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getEmailOpenReadTimes

                  getEmailOpenReadTimes: (
                  filter?: StatisticsFilteringParameters,
                  callback?: Callback<EmailReadTimesCounts>
                  ) => Promise<EmailReadTimesCounts>;
                  • Get Read Time statistics for messages sent from the Server associated with this Client.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getInboundMessageDetails

                  getInboundMessageDetails: (
                  messageId: string,
                  callback?: Callback<InboundMessageDetails>
                  ) => Promise<InboundMessageDetails>;
                  • Get details for a specific Inbound Message.

                    Parameter messageId

                    The ID of the Inbound Message you wish to retrieve.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getInboundMessages

                  getInboundMessages: (
                  filter?: InboundMessagesFilteringParameters,
                  callback?: Callback<InboundMessages>
                  ) => Promise<InboundMessages>;
                  • Get a batch of Inbound Messages.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getInboundRuleTriggers

                  getInboundRuleTriggers: (
                  filter?: FilteringParameters,
                  callback?: Callback<InboundRules>
                  ) => Promise<InboundRules>;
                  • Get a list of Inbound Rule Triggers.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getMessageClicks

                  getMessageClicks: (
                  filter?: OutboundMessageClicksFilteringParameters,
                  callback?: Callback<OutboundMessageClicks>
                  ) => Promise<OutboundMessageClicks>;
                  • Get the Clicks for Outbound Messages.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getMessageClicksForSingleMessage

                  getMessageClicksForSingleMessage: (
                  messageId: string,
                  filter?: OutboundMessageClicksFilteringParameters,
                  callback?: Callback<OutboundMessageClicks>
                  ) => Promise<OutboundMessageClicks>;
                  • Get Click information for a single Outbound Message.

                    Parameter messageId

                    The MessageID for which clicks should be retrieved.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getMessageOpens

                  getMessageOpens: (
                  filter?: OutboundMessageOpensFilteringParameters,
                  callback?: Callback<OutboundMessageOpens>
                  ) => Promise<OutboundMessageOpens>;
                  • Get the Opens for Outbound Messages.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getMessageOpensForSingleMessage

                  getMessageOpensForSingleMessage: (
                  messageId: string,
                  filter?: OutboundMessageOpensFilteringParameters,
                  callback?: Callback<OutboundMessageOpens>
                  ) => Promise<OutboundMessageOpens>;
                  • Get details of Opens for specific Outbound Message.

                    Parameter messageId

                    Message ID of the message for which you wish to retrieve Opens.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getMessageStream

                  getMessageStream: (
                  id: string,
                  callback?: Callback<MessageStream>
                  ) => Promise<MessageStream>;
                  • Get details for a specific message stream on a server.

                    Parameter id

                    The ID of the message stream you wish to retrieve.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getMessageStreams

                  getMessageStreams: (
                  filter?: MessageStreamsFilteringParameters,
                  callback?: Callback<MessageStreams>
                  ) => Promise<MessageStreams>;
                  • Get the list of message streams on a server.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getOutboundMessageDetails

                  getOutboundMessageDetails: (
                  messageId: string,
                  callback?: Callback<OutboundMessageDetails>
                  ) => Promise<OutboundMessageDetails>;
                  • Get details for a specific Outbound Message.

                    Parameter messageId

                    The ID of the OutboundMessage you wish to retrieve.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getOutboundMessageDump

                  getOutboundMessageDump: (
                  messageId: string,
                  callback?: Callback<OutboundMessageDump>
                  ) => Promise<OutboundMessageDump>;
                  • Get details for a specific Outbound Message.

                    Parameter messageId

                    The ID of the OutboundMessage you wish to retrieve.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getOutboundMessages

                  getOutboundMessages: (
                  filter?: OutboundMessagesFilteringParameters,
                  callback?: Callback<OutboundMessages>
                  ) => Promise<OutboundMessages>;
                  • Get a batch of Outbound Messages.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getOutboundOverview

                  getOutboundOverview: (
                  filter?: StatisticsFilteringParameters,
                  callback?: Callback<OutboundStatistics>
                  ) => Promise<OutboundStatistics>;
                  • Get overview statistics on Outbound Messages sent from the Server associated with this Client.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getSentCounts

                  getSentCounts: (
                  filter?: StatisticsFilteringParameters,
                  callback?: Callback<SentCounts>
                  ) => Promise<SentCounts>;
                  • Get statistics on email sent from the Server associated with this Client.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getServer

                  getServer: (callback?: Callback<Server>) => Promise<Server>;
                  • Get the information for the Server associated with this Client.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getSpamComplaintsCounts

                  getSpamComplaintsCounts: (
                  filter?: StatisticsFilteringParameters,
                  callback?: Callback<SpamCounts>
                  ) => Promise<SpamCounts>;
                  • Get SPAM complaint statistics for email sent from the Server associated with this Client.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getSuppressions

                  getSuppressions: (
                  messageStream: string,
                  filter?: SuppressionFilteringParameters,
                  callback?: Callback<Suppressions>
                  ) => Promise<Suppressions>;
                  • Get the list of suppressions for a message stream on a server.

                    Parameter messageStream

                    Select message stream

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getTemplate

                  getTemplate: (
                  idOrAlias: number | string,
                  callback?: Callback<Template>
                  ) => Promise<Template>;
                  • Get the a specific template associated with this server.

                    Parameter idOrAlias

                    ID or alias for the template you wish to retrieve.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getTemplates

                  getTemplates: (
                  filter?: TemplateFilteringParameters,
                  callback?: Callback<Templates>
                  ) => Promise<Templates>;
                  • Get the list of templates associated with this server.

                    Parameter filter

                    Optional filtering options.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getTrackedEmailCounts

                  getTrackedEmailCounts: (
                  filter?: StatisticsFilteringParameters,
                  callback?: Callback<TrackedEmailCounts>
                  ) => Promise<TrackedEmailCounts>;
                  • Get email tracking statistics for messages sent from the Server associated with this Client.

                    Parameter filter

                    Optional filtering parameters.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getWebhook

                  getWebhook: (id: number, callback?: Callback<Webhook>) => Promise<Webhook>;
                  • Get details for a specific Webhook.

                    Parameter id

                    The ID of the Webhook you wish to retrieve.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method getWebhooks

                  getWebhooks: (
                  filter?: WebhookFilteringParameters,
                  callback?: Callback<Webhooks>
                  ) => Promise<Webhooks>;
                  • Get the list of Webhooks for specific server.

                    Parameter filter

                    Optional filtering parameters

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method retryInboundHookForMessage

                  retryInboundHookForMessage: (
                  messageId: string,
                  callback?: Callback<DefaultResponse>
                  ) => Promise<DefaultResponse>;
                  • Request that Postmark retry POSTing to the Inbound Hook for the specified message.

                    Parameter messageId

                    The ID of the Inbound Message for which you wish to retry the inbound hook.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method sendEmail

                  sendEmail: (
                  email: Message,
                  callback?: Callback<MessageSendingResponse>
                  ) => Promise<MessageSendingResponse>;
                  • Send a single email message.

                    Parameter email

                    Email message to send.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method sendEmailBatch

                  sendEmailBatch: (
                  emails: Message[],
                  callback?: Callback<MessageSendingResponse[]>
                  ) => Promise<MessageSendingResponse[]>;
                  • Send a batch of email messages.

                    Parameter emails

                    An array of messages to send.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method sendEmailBatchWithTemplates

                  sendEmailBatchWithTemplates: (
                  templates: TemplatedMessage[],
                  callback?: Callback<MessageSendingResponse[]>
                  ) => Promise<MessageSendingResponse[]>;
                  • Send a batch of template email messages.

                    Parameter templates

                    An array of templated messages you wish to send using this Client.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method sendEmailWithTemplate

                  sendEmailWithTemplate: (
                  template: TemplatedMessage,
                  callback?: Callback<MessageSendingResponse>
                  ) => Promise<MessageSendingResponse>;
                  • Send a message using a template.

                    Parameter template

                    Message you wish to send.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method unarchiveMessageStream

                  unarchiveMessageStream: (
                  id: string,
                  callback?: Callback<MessageStreamUnarchiveResponse>
                  ) => Promise<MessageStreamUnarchiveResponse>;
                  • Unarchive a message stream on the associated server.

                    Parameter options

                    Configuration options to be used when creating message stream on the server.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  method validateTemplate

                  validateTemplate: (
                  options: TemplateValidationOptions,
                  callback?: Callback<TemplateValidation>
                  ) => Promise<TemplateValidation>;
                  • Validate template markup to verify that it will be parsed. Also provides a recommended template model to be used when sending using the specified template content.

                    Parameter options

                    The template content you wish to validate.

                    Parameter callback

                    If the callback is provided, it will be passed to the resulting promise as a continuation.

                    Returns

                    A promise that will complete when the API responds (or an error occurs).

                  class Header {}

                    constructor

                    constructor(Name: string, Value: string);

                      property Name

                      Name: string;

                        property Value

                        Value: string;

                          class Message

                          class Message {}

                            constructor

                            constructor(
                            From: string,
                            Subject: string,
                            HtmlBody?: string,
                            TextBody?: string,
                            To?: string,
                            Cc?: string,
                            Bcc?: string,
                            ReplyTo?: string,
                            Tag?: string,
                            TrackOpens?: boolean,
                            TrackLinks?: LinkTrackingOptions,
                            Headers?: Header[],
                            Attachments?: Attachment[],
                            Metadata?: Hash<string>
                            );

                              property Attachments

                              Attachments?: Attachment[];

                                property Bcc

                                Bcc?: string;

                                  property Cc

                                  Cc?: string;

                                    property From

                                    From: string;

                                      property Headers

                                      Headers?: Header[];

                                        property HtmlBody

                                        HtmlBody?: string;

                                          property MessageStream

                                          MessageStream?: string;

                                            property Metadata

                                            Metadata?: Hash<string>;

                                              property ReplyTo

                                              ReplyTo?: string;

                                                property Subject

                                                Subject: string;

                                                  property Tag

                                                  Tag?: string;

                                                    property TextBody

                                                    TextBody?: string;

                                                      property To

                                                      To?: string;
                                                        TrackLinks?: LinkTrackingOptions;

                                                          property TrackOpens

                                                          TrackOpens?: boolean;

                                                            class ServerClient

                                                            class ServerClient extends BaseClient {}
                                                            • Server client class that can be used to interact with an individual Postmark Server.

                                                            constructor

                                                            constructor(serverToken: string, configOptions?: ClientOptions.Configuration);
                                                            • Create a client.

                                                              Parameter serverToken

                                                              The token for the server that you wish to interact with.

                                                              Parameter configOptions

                                                              Options to customize the behavior of the this client.

                                                            method activateBounce

                                                            activateBounce: (
                                                            id: number,
                                                            callback?: Callback<BounceActivationResponse>
                                                            ) => Promise<BounceActivationResponse>;
                                                            • Activate email address that was deactivated due to a Bounce.

                                                              Parameter id

                                                              The ID of the Bounce for which you wish to activate the associated email.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method archiveMessageStream

                                                            archiveMessageStream: (
                                                            id: string,
                                                            callback?: Callback<MessageStreamArchiveResponse>
                                                            ) => Promise<MessageStreamArchiveResponse>;
                                                            • Archive a message stream on the associated server.

                                                              Parameter options

                                                              Configuration options to be used when creating message stream on the server.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method bypassBlockedInboundMessage

                                                            bypassBlockedInboundMessage: (
                                                            messageId: string,
                                                            callback?: Callback<DefaultResponse>
                                                            ) => Promise<DefaultResponse>;
                                                            • Cause an Inbound Message to bypass filtering rules defined on this Client's associated Server.

                                                              Parameter messageId

                                                              The ID of the Inbound Message for which you wish to bypass the filtering rules.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method createInboundRuleTrigger

                                                            createInboundRuleTrigger: (
                                                            options: CreateInboundRuleRequest,
                                                            callback?: Callback<InboundRule>
                                                            ) => Promise<InboundRule>;
                                                            • Create an Inbound Rule Trigger.

                                                              Parameter options

                                                              Configuration options to be used when creating this Trigger.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method createMessageStream

                                                            createMessageStream: (
                                                            options: CreateMessageStreamRequest,
                                                            callback?: Callback<MessageStream>
                                                            ) => Promise<MessageStream>;
                                                            • Create a message stream on the associated server.

                                                              Parameter options

                                                              Configuration options to be used when creating message stream on the server.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method createSuppressions

                                                            createSuppressions: (
                                                            messageStream: string,
                                                            options: CreateSuppressionsRequest,
                                                            callback?: Callback<SuppressionStatuses>
                                                            ) => Promise<SuppressionStatuses>;
                                                            • Add email addresses to a suppressions list on a message stream on a server.

                                                              Parameter messageStream

                                                              Select message stream

                                                              Parameter options

                                                              Suppressions you wish to add.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method createTemplate

                                                            createTemplate: (
                                                            options: CreateTemplateRequest,
                                                            callback?: Callback<Template>
                                                            ) => Promise<Template>;
                                                            • Create a new template on the associated server.

                                                              Parameter options

                                                              Configuration options to be used to create the Template.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method createWebhook

                                                            createWebhook: (
                                                            options: CreateWebhookRequest,
                                                            callback?: Callback<Webhook>
                                                            ) => Promise<Webhook>;
                                                            • Create a Webhook on the associated server.

                                                              Parameter options

                                                              Configuration options to be used when creating Webhook trigger.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method deleteInboundRuleTrigger

                                                            deleteInboundRuleTrigger: (
                                                            id: number,
                                                            callback?: Callback<DefaultResponse>
                                                            ) => Promise<DefaultResponse>;
                                                            • Delete an Inbound Rule Trigger.

                                                              Parameter id

                                                              The ID of the Inbound Rule Trigger you wish to delete.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method deleteSuppressions

                                                            deleteSuppressions: (
                                                            messageStream: string,
                                                            options: DeleteSuppressionsRequest,
                                                            callback?: Callback<SuppressionStatuses>
                                                            ) => Promise<SuppressionStatuses>;
                                                            • Delete email addresses from a suppressions list on a message stream on a server.

                                                              Parameter messageStream

                                                              Select message stream

                                                              Parameter options

                                                              Suppressions you wish to delete.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method deleteTemplate

                                                            deleteTemplate: (
                                                            idOrAlias: number | string,
                                                            callback?: Callback<DefaultResponse>
                                                            ) => Promise<DefaultResponse>;
                                                            • Delete a template associated with this server.

                                                              Parameter idOrAlias

                                                              ID or template alias you wish to delete.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method deleteWebhook

                                                            deleteWebhook: (
                                                            id: number,
                                                            callback?: Callback<DefaultResponse>
                                                            ) => Promise<DefaultResponse>;
                                                            • Delete an existing Webhook.

                                                              Parameter id

                                                              The ID of the Webhook you wish to delete.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method editMessageStream

                                                            editMessageStream: (
                                                            id: string,
                                                            options: UpdateMessageStreamRequest,
                                                            callback?: Callback<MessageStream>
                                                            ) => Promise<MessageStream>;
                                                            • Update message stream on the associated server.

                                                              Parameter id

                                                              Id of the webhook you wish to update.

                                                              Parameter options

                                                              Webhook options you wish to update.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method editServer

                                                            editServer: (
                                                            options: UpdateServerRequest,
                                                            callback?: Callback<Server>
                                                            ) => Promise<Server>;
                                                            • Modify the Server associated with this Client.

                                                              Parameter options

                                                              The options you wish to modify.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method editTemplate

                                                            editTemplate: (
                                                            idOrAlias: number | string,
                                                            options: UpdateTemplateRequest,
                                                            callback?: Callback<Template>
                                                            ) => Promise<Template>;
                                                            • Update a template on the associated server.

                                                              Parameter idOrAlias

                                                              Id or alias of the template you wish to update.

                                                              Parameter options

                                                              Template options you wish to update.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method editWebhook

                                                            editWebhook: (
                                                            id: number,
                                                            options: UpdateWebhookRequest,
                                                            callback?: Callback<Webhook>
                                                            ) => Promise<Webhook>;
                                                            • Update Webhook on the associated server.

                                                              Parameter id

                                                              Id of the webhook you wish to update.

                                                              Parameter options

                                                              Webhook options you wish to update.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getBounce

                                                            getBounce: (id: number, callback?: Callback<Bounce>) => Promise<Bounce>;
                                                            • Get details for a specific Bounce.

                                                              Parameter id

                                                              The ID of the Bounce you wish to retrieve.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getBounceCounts

                                                            getBounceCounts: (
                                                            filter?: StatisticsFilteringParameters,
                                                            callback?: Callback<BounceCounts>
                                                            ) => Promise<BounceCounts>;
                                                            • Get statistiscs on emails that bounced after being sent from the Server associated with this Client.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getBounceDump

                                                            getBounceDump: (
                                                            id: number,
                                                            callback?: Callback<BounceDump>
                                                            ) => Promise<BounceDump>;
                                                            • Get a Bounce Dump for a specific Bounce.

                                                              Parameter id

                                                              The ID of the Bounce for which you wish to retrieve Bounce Dump.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getBounces

                                                            getBounces: (
                                                            filter?: BounceFilteringParameters,
                                                            callback?: Callback<Bounces>
                                                            ) => Promise<Bounces>;
                                                            • Get a batch of bounces.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getClickBrowserUsage

                                                            getClickBrowserUsage: (
                                                            filter?: StatisticsFilteringParameters,
                                                            callback?: Callback<BrowserUsageCounts>
                                                            ) => Promise<BrowserUsageCounts>;
                                                            • Get browser family statistics for tracked links for messages sent from the Server associated with this Client.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getClickCounts

                                                            getClickCounts: (
                                                            filter?: StatisticsFilteringParameters,
                                                            callback?: Callback<ClickCounts>
                                                            ) => Promise<ClickCounts>;
                                                            • Get total clicks statistics for tracked links for messages sent from the Server associated with this Client.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getClickLocation

                                                            getClickLocation: (
                                                            filter?: StatisticsFilteringParameters,
                                                            callback?: Callback<ClickLocationCounts>
                                                            ) => Promise<ClickLocationCounts>;
                                                            • Get click location (in HTML or Text body of the email) statistics for tracked links for messages sent from the Server associated with this Client.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getClickPlatformUsage

                                                            getClickPlatformUsage: (
                                                            filter?: StatisticsFilteringParameters,
                                                            callback?: Callback<ClickPlatformUsageCounts>
                                                            ) => Promise<ClickPlatformUsageCounts>;
                                                            • Get browser platform statistics for tracked links for messages sent from the Server associated with this Client.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getDeliveryStatistics

                                                            getDeliveryStatistics: (
                                                            callback?: Callback<DeliveryStatistics>
                                                            ) => Promise<DeliveryStatistics>;
                                                            • Get bounce statistic information for the associated Server.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getEmailOpenClientUsage

                                                            getEmailOpenClientUsage: (
                                                            filter?: StatisticsFilteringParameters,
                                                            callback?: Callback<EmailClientUsageCounts>
                                                            ) => Promise<EmailClientUsageCounts>;
                                                            • Get statistics on which Email Clients were used to open messages sent from the Server associated with this Client.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getEmailOpenCounts

                                                            getEmailOpenCounts: (
                                                            filter?: StatisticsFilteringParameters,
                                                            callback?: Callback<OpenCounts>
                                                            ) => Promise<OpenCounts>;
                                                            • Get Open statistics for messages sent from the Server associated with this Client.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getEmailOpenPlatformUsage

                                                            getEmailOpenPlatformUsage: (
                                                            filter?: StatisticsFilteringParameters,
                                                            callback?: Callback<EmailPlaformUsageCounts>
                                                            ) => Promise<EmailPlaformUsageCounts>;
                                                            • Get Email Client Platform statistics for messages sent from the Server associated with this Client.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getEmailOpenReadTimes

                                                            getEmailOpenReadTimes: (
                                                            filter?: StatisticsFilteringParameters,
                                                            callback?: Callback<EmailReadTimesCounts>
                                                            ) => Promise<EmailReadTimesCounts>;
                                                            • Get Read Time statistics for messages sent from the Server associated with this Client.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getInboundMessageDetails

                                                            getInboundMessageDetails: (
                                                            messageId: string,
                                                            callback?: Callback<InboundMessageDetails>
                                                            ) => Promise<InboundMessageDetails>;
                                                            • Get details for a specific Inbound Message.

                                                              Parameter messageId

                                                              The ID of the Inbound Message you wish to retrieve.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getInboundMessages

                                                            getInboundMessages: (
                                                            filter?: InboundMessagesFilteringParameters,
                                                            callback?: Callback<InboundMessages>
                                                            ) => Promise<InboundMessages>;
                                                            • Get a batch of Inbound Messages.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getInboundRuleTriggers

                                                            getInboundRuleTriggers: (
                                                            filter?: FilteringParameters,
                                                            callback?: Callback<InboundRules>
                                                            ) => Promise<InboundRules>;
                                                            • Get a list of Inbound Rule Triggers.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getMessageClicks

                                                            getMessageClicks: (
                                                            filter?: OutboundMessageClicksFilteringParameters,
                                                            callback?: Callback<OutboundMessageClicks>
                                                            ) => Promise<OutboundMessageClicks>;
                                                            • Get the Clicks for Outbound Messages.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getMessageClicksForSingleMessage

                                                            getMessageClicksForSingleMessage: (
                                                            messageId: string,
                                                            filter?: OutboundMessageClicksFilteringParameters,
                                                            callback?: Callback<OutboundMessageClicks>
                                                            ) => Promise<OutboundMessageClicks>;
                                                            • Get Click information for a single Outbound Message.

                                                              Parameter messageId

                                                              The MessageID for which clicks should be retrieved.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getMessageOpens

                                                            getMessageOpens: (
                                                            filter?: OutboundMessageOpensFilteringParameters,
                                                            callback?: Callback<OutboundMessageOpens>
                                                            ) => Promise<OutboundMessageOpens>;
                                                            • Get the Opens for Outbound Messages.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getMessageOpensForSingleMessage

                                                            getMessageOpensForSingleMessage: (
                                                            messageId: string,
                                                            filter?: OutboundMessageOpensFilteringParameters,
                                                            callback?: Callback<OutboundMessageOpens>
                                                            ) => Promise<OutboundMessageOpens>;
                                                            • Get details of Opens for specific Outbound Message.

                                                              Parameter messageId

                                                              Message ID of the message for which you wish to retrieve Opens.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getMessageStream

                                                            getMessageStream: (
                                                            id: string,
                                                            callback?: Callback<MessageStream>
                                                            ) => Promise<MessageStream>;
                                                            • Get details for a specific message stream on a server.

                                                              Parameter id

                                                              The ID of the message stream you wish to retrieve.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getMessageStreams

                                                            getMessageStreams: (
                                                            filter?: MessageStreamsFilteringParameters,
                                                            callback?: Callback<MessageStreams>
                                                            ) => Promise<MessageStreams>;
                                                            • Get the list of message streams on a server.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getOutboundMessageDetails

                                                            getOutboundMessageDetails: (
                                                            messageId: string,
                                                            callback?: Callback<OutboundMessageDetails>
                                                            ) => Promise<OutboundMessageDetails>;
                                                            • Get details for a specific Outbound Message.

                                                              Parameter messageId

                                                              The ID of the OutboundMessage you wish to retrieve.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getOutboundMessageDump

                                                            getOutboundMessageDump: (
                                                            messageId: string,
                                                            callback?: Callback<OutboundMessageDump>
                                                            ) => Promise<OutboundMessageDump>;
                                                            • Get details for a specific Outbound Message.

                                                              Parameter messageId

                                                              The ID of the OutboundMessage you wish to retrieve.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getOutboundMessages

                                                            getOutboundMessages: (
                                                            filter?: OutboundMessagesFilteringParameters,
                                                            callback?: Callback<OutboundMessages>
                                                            ) => Promise<OutboundMessages>;
                                                            • Get a batch of Outbound Messages.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getOutboundOverview

                                                            getOutboundOverview: (
                                                            filter?: StatisticsFilteringParameters,
                                                            callback?: Callback<OutboundStatistics>
                                                            ) => Promise<OutboundStatistics>;
                                                            • Get overview statistics on Outbound Messages sent from the Server associated with this Client.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getSentCounts

                                                            getSentCounts: (
                                                            filter?: StatisticsFilteringParameters,
                                                            callback?: Callback<SentCounts>
                                                            ) => Promise<SentCounts>;
                                                            • Get statistics on email sent from the Server associated with this Client.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getServer

                                                            getServer: (callback?: Callback<Server>) => Promise<Server>;
                                                            • Get the information for the Server associated with this Client.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getSpamComplaintsCounts

                                                            getSpamComplaintsCounts: (
                                                            filter?: StatisticsFilteringParameters,
                                                            callback?: Callback<SpamCounts>
                                                            ) => Promise<SpamCounts>;
                                                            • Get SPAM complaint statistics for email sent from the Server associated with this Client.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getSuppressions

                                                            getSuppressions: (
                                                            messageStream: string,
                                                            filter?: SuppressionFilteringParameters,
                                                            callback?: Callback<Suppressions>
                                                            ) => Promise<Suppressions>;
                                                            • Get the list of suppressions for a message stream on a server.

                                                              Parameter messageStream

                                                              Select message stream

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getTemplate

                                                            getTemplate: (
                                                            idOrAlias: number | string,
                                                            callback?: Callback<Template>
                                                            ) => Promise<Template>;
                                                            • Get the a specific template associated with this server.

                                                              Parameter idOrAlias

                                                              ID or alias for the template you wish to retrieve.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getTemplates

                                                            getTemplates: (
                                                            filter?: TemplateFilteringParameters,
                                                            callback?: Callback<Templates>
                                                            ) => Promise<Templates>;
                                                            • Get the list of templates associated with this server.

                                                              Parameter filter

                                                              Optional filtering options.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getTrackedEmailCounts

                                                            getTrackedEmailCounts: (
                                                            filter?: StatisticsFilteringParameters,
                                                            callback?: Callback<TrackedEmailCounts>
                                                            ) => Promise<TrackedEmailCounts>;
                                                            • Get email tracking statistics for messages sent from the Server associated with this Client.

                                                              Parameter filter

                                                              Optional filtering parameters.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getWebhook

                                                            getWebhook: (id: number, callback?: Callback<Webhook>) => Promise<Webhook>;
                                                            • Get details for a specific Webhook.

                                                              Parameter id

                                                              The ID of the Webhook you wish to retrieve.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method getWebhooks

                                                            getWebhooks: (
                                                            filter?: WebhookFilteringParameters,
                                                            callback?: Callback<Webhooks>
                                                            ) => Promise<Webhooks>;
                                                            • Get the list of Webhooks for specific server.

                                                              Parameter filter

                                                              Optional filtering parameters

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method retryInboundHookForMessage

                                                            retryInboundHookForMessage: (
                                                            messageId: string,
                                                            callback?: Callback<DefaultResponse>
                                                            ) => Promise<DefaultResponse>;
                                                            • Request that Postmark retry POSTing to the Inbound Hook for the specified message.

                                                              Parameter messageId

                                                              The ID of the Inbound Message for which you wish to retry the inbound hook.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method sendEmail

                                                            sendEmail: (
                                                            email: Message,
                                                            callback?: Callback<MessageSendingResponse>
                                                            ) => Promise<MessageSendingResponse>;
                                                            • Send a single email message.

                                                              Parameter email

                                                              Email message to send.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method sendEmailBatch

                                                            sendEmailBatch: (
                                                            emails: Message[],
                                                            callback?: Callback<MessageSendingResponse[]>
                                                            ) => Promise<MessageSendingResponse[]>;
                                                            • Send a batch of email messages.

                                                              Parameter emails

                                                              An array of messages to send.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method sendEmailBatchWithTemplates

                                                            sendEmailBatchWithTemplates: (
                                                            templates: TemplatedMessage[],
                                                            callback?: Callback<MessageSendingResponse[]>
                                                            ) => Promise<MessageSendingResponse[]>;
                                                            • Send a batch of template email messages.

                                                              Parameter templates

                                                              An array of templated messages you wish to send using this Client.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method sendEmailWithTemplate

                                                            sendEmailWithTemplate: (
                                                            template: TemplatedMessage,
                                                            callback?: Callback<MessageSendingResponse>
                                                            ) => Promise<MessageSendingResponse>;
                                                            • Send a message using a template.

                                                              Parameter template

                                                              Message you wish to send.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method unarchiveMessageStream

                                                            unarchiveMessageStream: (
                                                            id: string,
                                                            callback?: Callback<MessageStreamUnarchiveResponse>
                                                            ) => Promise<MessageStreamUnarchiveResponse>;
                                                            • Unarchive a message stream on the associated server.

                                                              Parameter options

                                                              Configuration options to be used when creating message stream on the server.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            method validateTemplate

                                                            validateTemplate: (
                                                            options: TemplateValidationOptions,
                                                            callback?: Callback<TemplateValidation>
                                                            ) => Promise<TemplateValidation>;
                                                            • Validate template markup to verify that it will be parsed. Also provides a recommended template model to be used when sending using the specified template content.

                                                              Parameter options

                                                              The template content you wish to validate.

                                                              Parameter callback

                                                              If the callback is provided, it will be passed to the resulting promise as a continuation.

                                                              Returns

                                                              A promise that will complete when the API responds (or an error occurs).

                                                            class TemplatedMessage

                                                            class TemplatedMessage {}

                                                              constructor

                                                              constructor(
                                                              from: string,
                                                              templateIdOrAlias: string | number,
                                                              templateModel: {},
                                                              to?: string,
                                                              cc?: string,
                                                              bcc?: string,
                                                              replyTo?: string,
                                                              tag?: string,
                                                              trackOpens?: boolean,
                                                              trackLinks?: LinkTrackingOptions,
                                                              headers?: Header[],
                                                              attachments?: Attachment[]
                                                              );

                                                                property Attachments

                                                                Attachments?: Attachment[];

                                                                  property Bcc

                                                                  Bcc?: string;

                                                                    property Cc

                                                                    Cc?: string;

                                                                      property From

                                                                      From: string;

                                                                        property Headers

                                                                        Headers?: Header[];

                                                                          property InlineCss

                                                                          InlineCss?: boolean;

                                                                            property MessageStream

                                                                            MessageStream?: string;

                                                                              property Metadata

                                                                              Metadata?: Hash<string>;

                                                                                property ReplyTo

                                                                                ReplyTo?: string;

                                                                                  property Tag

                                                                                  Tag?: string;

                                                                                    property TemplateAlias

                                                                                    TemplateAlias?: string;

                                                                                      property TemplateId

                                                                                      TemplateId?: number;

                                                                                        property TemplateModel

                                                                                        TemplateModel: {};

                                                                                          property To

                                                                                          To?: string;
                                                                                            TrackLinks?: LinkTrackingOptions;

                                                                                              property TrackOpens

                                                                                              TrackOpens?: boolean;

                                                                                                Namespaces

                                                                                                namespace Errors

                                                                                                module 'dist/client/errors/Errors.d.ts' {}
                                                                                                • Standard Postmark error on which all sub-errors are based.

                                                                                                class ApiInputError

                                                                                                class ApiInputError extends HttpError {}

                                                                                                  constructor

                                                                                                  constructor(message: string, code: number, statusCode: number);

                                                                                                    property ERROR_CODES

                                                                                                    static ERROR_CODES: { inactiveRecipient: number; invalidEmailRequest: number };

                                                                                                      method buildSpecificError

                                                                                                      static buildSpecificError: (
                                                                                                      message: string,
                                                                                                      code: number,
                                                                                                      statusCode: number
                                                                                                      ) => ApiInputError;

                                                                                                        class HttpError

                                                                                                        class HttpError extends PostmarkError {}

                                                                                                          constructor

                                                                                                          constructor(message: string, code: number, statusCode: number);

                                                                                                            class InactiveRecipientsError

                                                                                                            class InactiveRecipientsError extends ApiInputError {}

                                                                                                              constructor

                                                                                                              constructor(message: string, code: number, statusCode: number);

                                                                                                                property inactiveRecipientsPatterns

                                                                                                                static inactiveRecipientsPatterns: RegExp[];

                                                                                                                  property recipients

                                                                                                                  recipients: string[];

                                                                                                                    method parseInactiveRecipients

                                                                                                                    static parseInactiveRecipients: (message: string) => string[];

                                                                                                                      class InternalServerError

                                                                                                                      class InternalServerError extends HttpError {}

                                                                                                                        constructor

                                                                                                                        constructor(message: string, code: number, statusCode: number);

                                                                                                                          class InvalidAPIKeyError

                                                                                                                          class InvalidAPIKeyError extends HttpError {}

                                                                                                                            constructor

                                                                                                                            constructor(message: string, code: number, statusCode: number);

                                                                                                                              class InvalidEmailRequestError

                                                                                                                              class InvalidEmailRequestError extends ApiInputError {}

                                                                                                                                constructor

                                                                                                                                constructor(message: string, code: number, statusCode: number);

                                                                                                                                  class PostmarkError

                                                                                                                                  class PostmarkError extends Error {}
                                                                                                                                  • Standard Postmark error on which all sub-errors are based.

                                                                                                                                  constructor

                                                                                                                                  constructor(message: string, code?: number, statusCode?: number);

                                                                                                                                    property code

                                                                                                                                    code: number;

                                                                                                                                      property statusCode

                                                                                                                                      statusCode: number;

                                                                                                                                        method setUpStackTrace

                                                                                                                                        protected setUpStackTrace: () => void;

                                                                                                                                          class RateLimitExceededError

                                                                                                                                          class RateLimitExceededError extends HttpError {}

                                                                                                                                            constructor

                                                                                                                                            constructor(message: string, code: number, statusCode: number);

                                                                                                                                              class ServiceUnavailablerError

                                                                                                                                              class ServiceUnavailablerError extends HttpError {}

                                                                                                                                                constructor

                                                                                                                                                constructor(message: string, code: number, statusCode: number);

                                                                                                                                                  class UnknownError

                                                                                                                                                  class UnknownError extends HttpError {}

                                                                                                                                                    constructor

                                                                                                                                                    constructor(message: string, code: number, statusCode: number);

                                                                                                                                                      namespace Models

                                                                                                                                                      module 'dist/client/models/index.d.ts' {}

                                                                                                                                                        class Attachment

                                                                                                                                                        class Attachment {}
                                                                                                                                                        • Attachment content

                                                                                                                                                          Parameter Name

                                                                                                                                                          name of the attachment, for example book.pdf

                                                                                                                                                          Parameter Content

                                                                                                                                                          Base64 encoded content, for example: fs.readFileSync('/Folder/book.pdf').toString('base64')

                                                                                                                                                          Parameter ContentID

                                                                                                                                                          id of the attachment, in case we are referencing it, for example: cid:123book.pdf

                                                                                                                                                          Parameter ContentType

                                                                                                                                                          content type (json, image, etc)

                                                                                                                                                          Parameter ContentLength

                                                                                                                                                          length of the message

                                                                                                                                                        constructor

                                                                                                                                                        constructor(
                                                                                                                                                        Name: string,
                                                                                                                                                        Content: string,
                                                                                                                                                        ContentType: string,
                                                                                                                                                        ContentID?: string,
                                                                                                                                                        ContentLength?: number
                                                                                                                                                        );

                                                                                                                                                          property Content

                                                                                                                                                          Content: string;

                                                                                                                                                            property ContentID

                                                                                                                                                            ContentID: string;

                                                                                                                                                              property ContentLength

                                                                                                                                                              ContentLength?: number;

                                                                                                                                                                property ContentType

                                                                                                                                                                ContentType: string;

                                                                                                                                                                  property Name

                                                                                                                                                                  Name: string;

                                                                                                                                                                    class BounceFilteringParameters

                                                                                                                                                                    class BounceFilteringParameters extends FilteringParameters {}
                                                                                                                                                                    • Describes filtering parameters that can be used when retrieving bounces. When pagination parameters are not specified, default values are set.

                                                                                                                                                                    constructor

                                                                                                                                                                    constructor(
                                                                                                                                                                    count?: number,
                                                                                                                                                                    offset?: number,
                                                                                                                                                                    type?: BounceType,
                                                                                                                                                                    inactive?: boolean,
                                                                                                                                                                    emailFilter?: string,
                                                                                                                                                                    tag?: string,
                                                                                                                                                                    messageID?: string,
                                                                                                                                                                    fromDate?: string,
                                                                                                                                                                    toDate?: string,
                                                                                                                                                                    messageStream?: string
                                                                                                                                                                    );

                                                                                                                                                                      property emailFilter

                                                                                                                                                                      emailFilter?: string;

                                                                                                                                                                        property fromDate

                                                                                                                                                                        fromDate?: string;

                                                                                                                                                                          property inactive

                                                                                                                                                                          inactive?: boolean;

                                                                                                                                                                            property messageID

                                                                                                                                                                            messageID?: string;

                                                                                                                                                                              property messageStream

                                                                                                                                                                              messageStream?: string;

                                                                                                                                                                                property tag

                                                                                                                                                                                tag?: string;

                                                                                                                                                                                  property toDate

                                                                                                                                                                                  toDate?: string;

                                                                                                                                                                                    property type

                                                                                                                                                                                    type?: BounceType;

                                                                                                                                                                                      class CreateDomainRequest

                                                                                                                                                                                      class CreateDomainRequest {}

                                                                                                                                                                                        constructor

                                                                                                                                                                                        constructor(Name: string, ReturnPathDomain?: string);

                                                                                                                                                                                          property Name

                                                                                                                                                                                          Name: string;

                                                                                                                                                                                            property ReturnPathDomain

                                                                                                                                                                                            ReturnPathDomain?: string;

                                                                                                                                                                                              class CreateInboundRuleRequest

                                                                                                                                                                                              class CreateInboundRuleRequest {}

                                                                                                                                                                                                constructor

                                                                                                                                                                                                constructor(Rule: string);

                                                                                                                                                                                                  property Rule

                                                                                                                                                                                                  Rule: string;

                                                                                                                                                                                                    class CreateMessageStreamRequest

                                                                                                                                                                                                    class CreateMessageStreamRequest {}

                                                                                                                                                                                                      constructor

                                                                                                                                                                                                      constructor(
                                                                                                                                                                                                      id: string,
                                                                                                                                                                                                      name: string,
                                                                                                                                                                                                      messageStreamType: string,
                                                                                                                                                                                                      description?: string,
                                                                                                                                                                                                      subscriptionManagementConfiguration?: SubscriptionManagementConfiguration
                                                                                                                                                                                                      );

                                                                                                                                                                                                        property Description

                                                                                                                                                                                                        Description?: string;

                                                                                                                                                                                                          property ID

                                                                                                                                                                                                          ID: string;

                                                                                                                                                                                                            property MessageStreamType

                                                                                                                                                                                                            MessageStreamType: string;

                                                                                                                                                                                                              property Name

                                                                                                                                                                                                              Name: string;

                                                                                                                                                                                                                property SubscriptionManagementConfiguration

                                                                                                                                                                                                                SubscriptionManagementConfiguration?: SubscriptionManagementConfiguration;

                                                                                                                                                                                                                  class CreateServerRequest

                                                                                                                                                                                                                  class CreateServerRequest extends UpdateServerRequest {}

                                                                                                                                                                                                                    constructor

                                                                                                                                                                                                                    constructor(
                                                                                                                                                                                                                    Name: string,
                                                                                                                                                                                                                    Color?: string,
                                                                                                                                                                                                                    SmtpApiActivated?: boolean,
                                                                                                                                                                                                                    RawEmailEnabled?: boolean,
                                                                                                                                                                                                                    InboundHookUrl?: string,
                                                                                                                                                                                                                    BounceHookUrl?: string,
                                                                                                                                                                                                                    OpenHookUrl?: string,
                                                                                                                                                                                                                    DeliveryHookUrl?: string,
                                                                                                                                                                                                                    ClickHookUrl?: string,
                                                                                                                                                                                                                    PostFirstOpenOnly?: boolean,
                                                                                                                                                                                                                    InboundSpamThreshold?: number,
                                                                                                                                                                                                                    TrackOpens?: boolean,
                                                                                                                                                                                                                    TrackLinks?: LinkTrackingOptions,
                                                                                                                                                                                                                    IncludeBounceContentInHook?: boolean,
                                                                                                                                                                                                                    EnableSmtpApiErrorHooks?: boolean,
                                                                                                                                                                                                                    InboundDomain?: string,
                                                                                                                                                                                                                    DeliveryType?: ServerDeliveryTypes
                                                                                                                                                                                                                    );

                                                                                                                                                                                                                      property DeliveryType

                                                                                                                                                                                                                      DeliveryType?: ServerDeliveryTypes;

                                                                                                                                                                                                                        class CreateSignatureRequest

                                                                                                                                                                                                                        class CreateSignatureRequest {}

                                                                                                                                                                                                                          constructor

                                                                                                                                                                                                                          constructor(
                                                                                                                                                                                                                          Name: string,
                                                                                                                                                                                                                          FromEmail: string,
                                                                                                                                                                                                                          ReplyToEmail?: string,
                                                                                                                                                                                                                          ReturnPathDomain?: string,
                                                                                                                                                                                                                          ConfirmationPersonalNote?: string
                                                                                                                                                                                                                          );

                                                                                                                                                                                                                            property ConfirmationPersonalNote

                                                                                                                                                                                                                            ConfirmationPersonalNote?: string;

                                                                                                                                                                                                                              property FromEmail

                                                                                                                                                                                                                              FromEmail: string;

                                                                                                                                                                                                                                property Name

                                                                                                                                                                                                                                Name?: string;

                                                                                                                                                                                                                                  property ReplyToEmail

                                                                                                                                                                                                                                  ReplyToEmail?: string;

                                                                                                                                                                                                                                    property ReturnPathDomain

                                                                                                                                                                                                                                    ReturnPathDomain?: string;

                                                                                                                                                                                                                                      class CreateTemplateRequest

                                                                                                                                                                                                                                      class CreateTemplateRequest extends UpdateTemplateRequest {}

                                                                                                                                                                                                                                        constructor

                                                                                                                                                                                                                                        constructor(
                                                                                                                                                                                                                                        Name: string,
                                                                                                                                                                                                                                        Subject?: string,
                                                                                                                                                                                                                                        HtmlBody?: string,
                                                                                                                                                                                                                                        TextBody?: string,
                                                                                                                                                                                                                                        Alias?: string,
                                                                                                                                                                                                                                        TemplateType?: TemplateTypes,
                                                                                                                                                                                                                                        LayoutTemplate?: string
                                                                                                                                                                                                                                        );

                                                                                                                                                                                                                                          class CreateWebhookRequest

                                                                                                                                                                                                                                          class CreateWebhookRequest extends UpdateWebhookRequest {}

                                                                                                                                                                                                                                            constructor

                                                                                                                                                                                                                                            constructor(
                                                                                                                                                                                                                                            url?: string,
                                                                                                                                                                                                                                            triggers?: WebhookRequestTriggers,
                                                                                                                                                                                                                                            httpAuth?: HttpAuth,
                                                                                                                                                                                                                                            httpHeaders?: Header[],
                                                                                                                                                                                                                                            messageStream?: string
                                                                                                                                                                                                                                            );

                                                                                                                                                                                                                                              property MessageStream

                                                                                                                                                                                                                                              MessageStream?: string;

                                                                                                                                                                                                                                                class DataRemovalRequest

                                                                                                                                                                                                                                                class DataRemovalRequest {}

                                                                                                                                                                                                                                                  constructor

                                                                                                                                                                                                                                                  constructor(
                                                                                                                                                                                                                                                  requestedBy: string,
                                                                                                                                                                                                                                                  requestedFor: string,
                                                                                                                                                                                                                                                  notifyWhenCompleted: boolean
                                                                                                                                                                                                                                                  );

                                                                                                                                                                                                                                                    property NotifyWhenCompleted

                                                                                                                                                                                                                                                    NotifyWhenCompleted: boolean;

                                                                                                                                                                                                                                                      property RequestedBy

                                                                                                                                                                                                                                                      RequestedBy: string;

                                                                                                                                                                                                                                                        property RequestedFor

                                                                                                                                                                                                                                                        RequestedFor: string;

                                                                                                                                                                                                                                                          class FilteringParameters

                                                                                                                                                                                                                                                          class FilteringParameters implements Hash<any> {}
                                                                                                                                                                                                                                                          • Describes default filtering parameters that can be used. When pagination parameters are not specified, default values are set.

                                                                                                                                                                                                                                                          constructor

                                                                                                                                                                                                                                                          constructor(count?: number, offset?: number);

                                                                                                                                                                                                                                                            property count

                                                                                                                                                                                                                                                            count?: number;

                                                                                                                                                                                                                                                              property offset

                                                                                                                                                                                                                                                              offset?: number;

                                                                                                                                                                                                                                                                class Header

                                                                                                                                                                                                                                                                class Header {}

                                                                                                                                                                                                                                                                  constructor

                                                                                                                                                                                                                                                                  constructor(Name: string, Value: string);

                                                                                                                                                                                                                                                                    property Name

                                                                                                                                                                                                                                                                    Name: string;

                                                                                                                                                                                                                                                                      property Value

                                                                                                                                                                                                                                                                      Value: string;

                                                                                                                                                                                                                                                                        class HttpClient

                                                                                                                                                                                                                                                                        abstract class HttpClient {}

                                                                                                                                                                                                                                                                          constructor

                                                                                                                                                                                                                                                                          protected constructor(configOptions?: ClientOptions.Configuration);

                                                                                                                                                                                                                                                                            property client

                                                                                                                                                                                                                                                                            client: any;

                                                                                                                                                                                                                                                                              property clientOptions

                                                                                                                                                                                                                                                                              clientOptions: ClientOptions.Configuration;

                                                                                                                                                                                                                                                                                property DefaultOptions

                                                                                                                                                                                                                                                                                static DefaultOptions: ClientOptions.Configuration;
                                                                                                                                                                                                                                                                                • Http Client connection configuration options. You may modify these values and new clients will use them. Any values provided to a Client constructor will override default options.

                                                                                                                                                                                                                                                                                method getBaseHttpRequestURL

                                                                                                                                                                                                                                                                                getBaseHttpRequestURL: () => string;

                                                                                                                                                                                                                                                                                  method httpRequest

                                                                                                                                                                                                                                                                                  abstract httpRequest: <T>(
                                                                                                                                                                                                                                                                                  method: ClientOptions.HttpMethod,
                                                                                                                                                                                                                                                                                  path: string,
                                                                                                                                                                                                                                                                                  queryParameters: object,
                                                                                                                                                                                                                                                                                  body: null | object,
                                                                                                                                                                                                                                                                                  headers: any
                                                                                                                                                                                                                                                                                  ) => Promise<T>;

                                                                                                                                                                                                                                                                                    method initHttpClient

                                                                                                                                                                                                                                                                                    abstract initHttpClient: (configOptions?: ClientOptions.Configuration) => void;

                                                                                                                                                                                                                                                                                      class InboundMessagesFilteringParameters

                                                                                                                                                                                                                                                                                      class InboundMessagesFilteringParameters extends FilteringParameters {}
                                                                                                                                                                                                                                                                                      • Describes filtering parameters that can be used when retrieving inbound messages. When pagination parameters are not specified, default values are set.

                                                                                                                                                                                                                                                                                      constructor

                                                                                                                                                                                                                                                                                      constructor(
                                                                                                                                                                                                                                                                                      count?: number,
                                                                                                                                                                                                                                                                                      offset?: number,
                                                                                                                                                                                                                                                                                      mailboxHash?: string,
                                                                                                                                                                                                                                                                                      recipient?: string,
                                                                                                                                                                                                                                                                                      fromEmail?: string,
                                                                                                                                                                                                                                                                                      tag?: string,
                                                                                                                                                                                                                                                                                      status?: InboundMessageStatus,
                                                                                                                                                                                                                                                                                      fromDate?: string,
                                                                                                                                                                                                                                                                                      toDate?: string,
                                                                                                                                                                                                                                                                                      subject?: string
                                                                                                                                                                                                                                                                                      );

                                                                                                                                                                                                                                                                                        property fromDate

                                                                                                                                                                                                                                                                                        fromDate?: string;

                                                                                                                                                                                                                                                                                          property fromEmail

                                                                                                                                                                                                                                                                                          fromEmail?: string;

                                                                                                                                                                                                                                                                                            property mailboxHash

                                                                                                                                                                                                                                                                                            mailboxHash?: string;

                                                                                                                                                                                                                                                                                              property recipient

                                                                                                                                                                                                                                                                                              recipient?: string;

                                                                                                                                                                                                                                                                                                property status

                                                                                                                                                                                                                                                                                                status?: InboundMessageStatus;

                                                                                                                                                                                                                                                                                                  property subject

                                                                                                                                                                                                                                                                                                  subject?: string;

                                                                                                                                                                                                                                                                                                    property tag

                                                                                                                                                                                                                                                                                                    tag?: string;

                                                                                                                                                                                                                                                                                                      property toDate

                                                                                                                                                                                                                                                                                                      toDate?: string;

                                                                                                                                                                                                                                                                                                        class Message

                                                                                                                                                                                                                                                                                                        class Message {}

                                                                                                                                                                                                                                                                                                          constructor

                                                                                                                                                                                                                                                                                                          constructor(
                                                                                                                                                                                                                                                                                                          From: string,
                                                                                                                                                                                                                                                                                                          Subject: string,
                                                                                                                                                                                                                                                                                                          HtmlBody?: string,
                                                                                                                                                                                                                                                                                                          TextBody?: string,
                                                                                                                                                                                                                                                                                                          To?: string,
                                                                                                                                                                                                                                                                                                          Cc?: string,
                                                                                                                                                                                                                                                                                                          Bcc?: string,
                                                                                                                                                                                                                                                                                                          ReplyTo?: string,
                                                                                                                                                                                                                                                                                                          Tag?: string,
                                                                                                                                                                                                                                                                                                          TrackOpens?: boolean,
                                                                                                                                                                                                                                                                                                          TrackLinks?: LinkTrackingOptions,
                                                                                                                                                                                                                                                                                                          Headers?: Header[],
                                                                                                                                                                                                                                                                                                          Attachments?: Attachment[],
                                                                                                                                                                                                                                                                                                          Metadata?: Hash<string>
                                                                                                                                                                                                                                                                                                          );

                                                                                                                                                                                                                                                                                                            property Attachments

                                                                                                                                                                                                                                                                                                            Attachments?: Attachment[];

                                                                                                                                                                                                                                                                                                              property Bcc

                                                                                                                                                                                                                                                                                                              Bcc?: string;

                                                                                                                                                                                                                                                                                                                property Cc

                                                                                                                                                                                                                                                                                                                Cc?: string;

                                                                                                                                                                                                                                                                                                                  property From

                                                                                                                                                                                                                                                                                                                  From: string;

                                                                                                                                                                                                                                                                                                                    property Headers

                                                                                                                                                                                                                                                                                                                    Headers?: Header[];

                                                                                                                                                                                                                                                                                                                      property HtmlBody

                                                                                                                                                                                                                                                                                                                      HtmlBody?: string;

                                                                                                                                                                                                                                                                                                                        property MessageStream

                                                                                                                                                                                                                                                                                                                        MessageStream?: string;

                                                                                                                                                                                                                                                                                                                          property Metadata

                                                                                                                                                                                                                                                                                                                          Metadata?: Hash<string>;

                                                                                                                                                                                                                                                                                                                            property ReplyTo

                                                                                                                                                                                                                                                                                                                            ReplyTo?: string;

                                                                                                                                                                                                                                                                                                                              property Subject

                                                                                                                                                                                                                                                                                                                              Subject: string;

                                                                                                                                                                                                                                                                                                                                property Tag

                                                                                                                                                                                                                                                                                                                                Tag?: string;

                                                                                                                                                                                                                                                                                                                                  property TextBody

                                                                                                                                                                                                                                                                                                                                  TextBody?: string;

                                                                                                                                                                                                                                                                                                                                    property To

                                                                                                                                                                                                                                                                                                                                    To?: string;
                                                                                                                                                                                                                                                                                                                                      TrackLinks?: LinkTrackingOptions;

                                                                                                                                                                                                                                                                                                                                        property TrackOpens

                                                                                                                                                                                                                                                                                                                                        TrackOpens?: boolean;

                                                                                                                                                                                                                                                                                                                                          class MessageStreamsFilteringParameters

                                                                                                                                                                                                                                                                                                                                          class MessageStreamsFilteringParameters {}
                                                                                                                                                                                                                                                                                                                                          • Describes filtering parameters that can be used when retrieving message streams.

                                                                                                                                                                                                                                                                                                                                          constructor

                                                                                                                                                                                                                                                                                                                                          constructor(messageStreamType?: string, includeArchivedStreams?: boolean);

                                                                                                                                                                                                                                                                                                                                            property includeArchivedStreams

                                                                                                                                                                                                                                                                                                                                            includeArchivedStreams?: boolean;

                                                                                                                                                                                                                                                                                                                                              property messageStreamType

                                                                                                                                                                                                                                                                                                                                              messageStreamType?: string;

                                                                                                                                                                                                                                                                                                                                                class OutboundMessageClicksFilteringParameters

                                                                                                                                                                                                                                                                                                                                                class OutboundMessageClicksFilteringParameters extends OutboundMessageTrackingFilteringParameters {}

                                                                                                                                                                                                                                                                                                                                                  class OutboundMessageOpensFilteringParameters

                                                                                                                                                                                                                                                                                                                                                  class OutboundMessageOpensFilteringParameters extends OutboundMessageTrackingFilteringParameters {}

                                                                                                                                                                                                                                                                                                                                                    class OutboundMessagesFilteringParameters

                                                                                                                                                                                                                                                                                                                                                    class OutboundMessagesFilteringParameters extends FilteringParameters {}
                                                                                                                                                                                                                                                                                                                                                    • Describes filtering parameters that can be used when retrieving outbound messages. When pagination parameters are not specified, default values are set.

                                                                                                                                                                                                                                                                                                                                                    constructor

                                                                                                                                                                                                                                                                                                                                                    constructor(
                                                                                                                                                                                                                                                                                                                                                    count?: number,
                                                                                                                                                                                                                                                                                                                                                    offset?: number,
                                                                                                                                                                                                                                                                                                                                                    recipient?: string,
                                                                                                                                                                                                                                                                                                                                                    fromEmail?: string,
                                                                                                                                                                                                                                                                                                                                                    tag?: string,
                                                                                                                                                                                                                                                                                                                                                    status?: OutboundMessageStatus,
                                                                                                                                                                                                                                                                                                                                                    fromDate?: string,
                                                                                                                                                                                                                                                                                                                                                    toDate?: string,
                                                                                                                                                                                                                                                                                                                                                    subject?: string,
                                                                                                                                                                                                                                                                                                                                                    messageStream?: string
                                                                                                                                                                                                                                                                                                                                                    );

                                                                                                                                                                                                                                                                                                                                                      property fromDate

                                                                                                                                                                                                                                                                                                                                                      fromDate?: string;

                                                                                                                                                                                                                                                                                                                                                        property fromEmail

                                                                                                                                                                                                                                                                                                                                                        fromEmail?: string;

                                                                                                                                                                                                                                                                                                                                                          property messageStream

                                                                                                                                                                                                                                                                                                                                                          messageStream?: string;

                                                                                                                                                                                                                                                                                                                                                            property recipient

                                                                                                                                                                                                                                                                                                                                                            recipient?: string;

                                                                                                                                                                                                                                                                                                                                                              property status

                                                                                                                                                                                                                                                                                                                                                              status?: OutboundMessageStatus;

                                                                                                                                                                                                                                                                                                                                                                property subject

                                                                                                                                                                                                                                                                                                                                                                subject?: string;

                                                                                                                                                                                                                                                                                                                                                                  property tag

                                                                                                                                                                                                                                                                                                                                                                  tag?: string;

                                                                                                                                                                                                                                                                                                                                                                    property toDate

                                                                                                                                                                                                                                                                                                                                                                    toDate?: string;

                                                                                                                                                                                                                                                                                                                                                                      class OutboundMessageTrackingFilteringParameters

                                                                                                                                                                                                                                                                                                                                                                      class OutboundMessageTrackingFilteringParameters extends FilteringParameters {}
                                                                                                                                                                                                                                                                                                                                                                      • Describes filtering parameters that can be used when retrieving tracked outbound messages. When pagination parameters are not specified, default values are set.

                                                                                                                                                                                                                                                                                                                                                                      constructor

                                                                                                                                                                                                                                                                                                                                                                      constructor(
                                                                                                                                                                                                                                                                                                                                                                      count?: number,
                                                                                                                                                                                                                                                                                                                                                                      offset?: number,
                                                                                                                                                                                                                                                                                                                                                                      recipient?: string,
                                                                                                                                                                                                                                                                                                                                                                      tag?: string,
                                                                                                                                                                                                                                                                                                                                                                      client_name?: string,
                                                                                                                                                                                                                                                                                                                                                                      client_company?: string,
                                                                                                                                                                                                                                                                                                                                                                      client_family?: string,
                                                                                                                                                                                                                                                                                                                                                                      os_name?: string,
                                                                                                                                                                                                                                                                                                                                                                      os_family?: string,
                                                                                                                                                                                                                                                                                                                                                                      os_company?: string,
                                                                                                                                                                                                                                                                                                                                                                      platform?: string,
                                                                                                                                                                                                                                                                                                                                                                      country?: string,
                                                                                                                                                                                                                                                                                                                                                                      region?: string,
                                                                                                                                                                                                                                                                                                                                                                      city?: string,
                                                                                                                                                                                                                                                                                                                                                                      messageStream?: string
                                                                                                                                                                                                                                                                                                                                                                      );

                                                                                                                                                                                                                                                                                                                                                                        property city

                                                                                                                                                                                                                                                                                                                                                                        city?: string;

                                                                                                                                                                                                                                                                                                                                                                          property client_company

                                                                                                                                                                                                                                                                                                                                                                          client_company?: string;

                                                                                                                                                                                                                                                                                                                                                                            property client_family

                                                                                                                                                                                                                                                                                                                                                                            client_family?: string;

                                                                                                                                                                                                                                                                                                                                                                              property client_name

                                                                                                                                                                                                                                                                                                                                                                              client_name?: string;

                                                                                                                                                                                                                                                                                                                                                                                property country

                                                                                                                                                                                                                                                                                                                                                                                country?: string;

                                                                                                                                                                                                                                                                                                                                                                                  property messageStream

                                                                                                                                                                                                                                                                                                                                                                                  messageStream?: string;

                                                                                                                                                                                                                                                                                                                                                                                    property os_company

                                                                                                                                                                                                                                                                                                                                                                                    os_company?: string;

                                                                                                                                                                                                                                                                                                                                                                                      property os_family

                                                                                                                                                                                                                                                                                                                                                                                      os_family?: string;

                                                                                                                                                                                                                                                                                                                                                                                        property os_name

                                                                                                                                                                                                                                                                                                                                                                                        os_name?: string;

                                                                                                                                                                                                                                                                                                                                                                                          property platform

                                                                                                                                                                                                                                                                                                                                                                                          platform?: string;

                                                                                                                                                                                                                                                                                                                                                                                            property recipient

                                                                                                                                                                                                                                                                                                                                                                                            recipient?: string;

                                                                                                                                                                                                                                                                                                                                                                                              property region

                                                                                                                                                                                                                                                                                                                                                                                              region?: string;

                                                                                                                                                                                                                                                                                                                                                                                                property tag

                                                                                                                                                                                                                                                                                                                                                                                                tag?: string;

                                                                                                                                                                                                                                                                                                                                                                                                  class ServerFilteringParameters

                                                                                                                                                                                                                                                                                                                                                                                                  class ServerFilteringParameters extends FilteringParameters {}
                                                                                                                                                                                                                                                                                                                                                                                                  • Describes filtering parameters that can be used when retrieving servers. When pagination parameters are not specified, default values are set.

                                                                                                                                                                                                                                                                                                                                                                                                  constructor

                                                                                                                                                                                                                                                                                                                                                                                                  constructor(count?: number, offset?: number, name?: string);

                                                                                                                                                                                                                                                                                                                                                                                                    property name

                                                                                                                                                                                                                                                                                                                                                                                                    name?: string;

                                                                                                                                                                                                                                                                                                                                                                                                      class StatisticsFilteringParameters

                                                                                                                                                                                                                                                                                                                                                                                                      class StatisticsFilteringParameters {}

                                                                                                                                                                                                                                                                                                                                                                                                        constructor

                                                                                                                                                                                                                                                                                                                                                                                                        constructor(
                                                                                                                                                                                                                                                                                                                                                                                                        tag?: string,
                                                                                                                                                                                                                                                                                                                                                                                                        fromDate?: string,
                                                                                                                                                                                                                                                                                                                                                                                                        toDate?: string,
                                                                                                                                                                                                                                                                                                                                                                                                        messageStream?: string
                                                                                                                                                                                                                                                                                                                                                                                                        );

                                                                                                                                                                                                                                                                                                                                                                                                          property fromDate

                                                                                                                                                                                                                                                                                                                                                                                                          fromDate?: string;

                                                                                                                                                                                                                                                                                                                                                                                                            property messageStream

                                                                                                                                                                                                                                                                                                                                                                                                            messageStream?: string;

                                                                                                                                                                                                                                                                                                                                                                                                              property tag

                                                                                                                                                                                                                                                                                                                                                                                                              tag?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                property toDate

                                                                                                                                                                                                                                                                                                                                                                                                                toDate?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                  class SuppressionFilteringParameters

                                                                                                                                                                                                                                                                                                                                                                                                                  class SuppressionFilteringParameters extends FilteringParameters {}
                                                                                                                                                                                                                                                                                                                                                                                                                  • Describes filtering parameters that can be used when retrieving bounces. When pagination parameters are not specified, default values are set.

                                                                                                                                                                                                                                                                                                                                                                                                                  constructor

                                                                                                                                                                                                                                                                                                                                                                                                                  constructor(
                                                                                                                                                                                                                                                                                                                                                                                                                  count?: number,
                                                                                                                                                                                                                                                                                                                                                                                                                  offset?: number,
                                                                                                                                                                                                                                                                                                                                                                                                                  suppressionReason?: SuppressionReason,
                                                                                                                                                                                                                                                                                                                                                                                                                  origin?: SuppressionOrigin,
                                                                                                                                                                                                                                                                                                                                                                                                                  emailAddress?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                  fromDate?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                  toDate?: string
                                                                                                                                                                                                                                                                                                                                                                                                                  );

                                                                                                                                                                                                                                                                                                                                                                                                                    property emailAddress

                                                                                                                                                                                                                                                                                                                                                                                                                    emailAddress?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                      property fromDate

                                                                                                                                                                                                                                                                                                                                                                                                                      fromDate?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                        property origin

                                                                                                                                                                                                                                                                                                                                                                                                                        origin?: SuppressionOrigin;

                                                                                                                                                                                                                                                                                                                                                                                                                          property suppressionReason

                                                                                                                                                                                                                                                                                                                                                                                                                          suppressionReason?: SuppressionReason;

                                                                                                                                                                                                                                                                                                                                                                                                                            property toDate

                                                                                                                                                                                                                                                                                                                                                                                                                            toDate?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                              class TemplatedMessage

                                                                                                                                                                                                                                                                                                                                                                                                                              class TemplatedMessage {}

                                                                                                                                                                                                                                                                                                                                                                                                                                constructor

                                                                                                                                                                                                                                                                                                                                                                                                                                constructor(
                                                                                                                                                                                                                                                                                                                                                                                                                                from: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                templateIdOrAlias: string | number,
                                                                                                                                                                                                                                                                                                                                                                                                                                templateModel: {},
                                                                                                                                                                                                                                                                                                                                                                                                                                to?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                cc?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                bcc?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                replyTo?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                tag?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                trackOpens?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                trackLinks?: LinkTrackingOptions,
                                                                                                                                                                                                                                                                                                                                                                                                                                headers?: Header[],
                                                                                                                                                                                                                                                                                                                                                                                                                                attachments?: Attachment[]
                                                                                                                                                                                                                                                                                                                                                                                                                                );

                                                                                                                                                                                                                                                                                                                                                                                                                                  property Attachments

                                                                                                                                                                                                                                                                                                                                                                                                                                  Attachments?: Attachment[];

                                                                                                                                                                                                                                                                                                                                                                                                                                    property Bcc

                                                                                                                                                                                                                                                                                                                                                                                                                                    Bcc?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                      property Cc

                                                                                                                                                                                                                                                                                                                                                                                                                                      Cc?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                        property From

                                                                                                                                                                                                                                                                                                                                                                                                                                        From: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                          property Headers

                                                                                                                                                                                                                                                                                                                                                                                                                                          Headers?: Header[];

                                                                                                                                                                                                                                                                                                                                                                                                                                            property InlineCss

                                                                                                                                                                                                                                                                                                                                                                                                                                            InlineCss?: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                              property MessageStream

                                                                                                                                                                                                                                                                                                                                                                                                                                              MessageStream?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                property Metadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                Metadata?: Hash<string>;

                                                                                                                                                                                                                                                                                                                                                                                                                                                  property ReplyTo

                                                                                                                                                                                                                                                                                                                                                                                                                                                  ReplyTo?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Tag

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Tag?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                      property TemplateAlias

                                                                                                                                                                                                                                                                                                                                                                                                                                                      TemplateAlias?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                        property TemplateId

                                                                                                                                                                                                                                                                                                                                                                                                                                                        TemplateId?: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                          property TemplateModel

                                                                                                                                                                                                                                                                                                                                                                                                                                                          TemplateModel: {};

                                                                                                                                                                                                                                                                                                                                                                                                                                                            property To

                                                                                                                                                                                                                                                                                                                                                                                                                                                            To?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              TrackLinks?: LinkTrackingOptions;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                property TrackOpens

                                                                                                                                                                                                                                                                                                                                                                                                                                                                TrackOpens?: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  class TemplateFilteringParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  class TemplateFilteringParameters extends FilteringParameters {}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Describes filtering parameters that can be used when retrieving templates. When pagination parameters are not specified, default values are set.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  constructor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  constructor(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  count?: number,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  offset?: number,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  templateType?: TemplateTypes,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  layoutTemplate?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  );

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property layoutTemplate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    layoutTemplate?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property templateType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      templateType?: TemplateTypes;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        class TemplatesPushRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        class TemplatesPushRequest {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          constructor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          constructor(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SourceServerID: number,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DestinationServerID: number,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PerformChanges: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          );

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property DestinationServerID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DestinationServerID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property PerformChanges

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PerformChanges: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property SourceServerID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SourceServerID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  class TemplateValidationOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  class TemplateValidationOptions {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    constructor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    constructor(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Subject?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HtmlBody?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TextBody?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TestRenderModel?: {},
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TemplateType?: TemplateTypes,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LayoutTemplate?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    InlineCssForHtmlTestRender?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    );

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property HtmlBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HtmlBody?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property InlineCssForHtmlTestRender

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        InlineCssForHtmlTestRender?: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property LayoutTemplate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LayoutTemplate?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Subject

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Subject?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property TemplateType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TemplateType?: TemplateTypes;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property TestRenderModel

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TestRenderModel?: {};

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property TextBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TextBody?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    class UpdateDomainRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    class UpdateDomainRequest {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      constructor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      constructor(ReturnPathDomain: string);

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property ReturnPathDomain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ReturnPathDomain?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          class UpdateMessageStreamRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          class UpdateMessageStreamRequest {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            constructor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            constructor(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            name?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            description?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            subscriptionManagementConfiguration?: SubscriptionManagementConfiguration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            );

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Description

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Description?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Name?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property SubscriptionManagementConfiguration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SubscriptionManagementConfiguration?: SubscriptionManagementConfiguration;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    class UpdateServerRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    class UpdateServerRequest {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      constructor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      constructor(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Name?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Color?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SmtpApiActivated?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RawEmailEnabled?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InboundHookUrl?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BounceHookUrl?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      OpenHookUrl?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DeliveryHookUrl?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ClickHookUrl?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PostFirstOpenOnly?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InboundSpamThreshold?: number,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      TrackOpens?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      TrackLinks?: LinkTrackingOptions,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      IncludeBounceContentInHook?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      EnableSmtpApiErrorHooks?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InboundDomain?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      );

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property BounceHookUrl

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BounceHookUrl?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property ClickHookUrl

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ClickHookUrl?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Color

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Color?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property DeliveryHookUrl

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DeliveryHookUrl?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property EnableSmtpApiErrorHooks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                EnableSmtpApiErrorHooks?: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property InboundDomain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  InboundDomain?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property InboundHookUrl

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    InboundHookUrl?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property InboundSpamThreshold

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InboundSpamThreshold?: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property IncludeBounceContentInHook

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        IncludeBounceContentInHook?: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Name?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property OpenHookUrl

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OpenHookUrl?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property PostFirstOpenOnly

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PostFirstOpenOnly?: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property RawEmailEnabled

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RawEmailEnabled?: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property SmtpApiActivated

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SmtpApiActivated?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TrackLinks?: LinkTrackingOptions;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property TrackOpens

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      TrackOpens?: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        class UpdateSignatureRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        class UpdateSignatureRequest {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          constructor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          constructor(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Name: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ReplyToEmail?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ReturnPathDomain?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ConfirmationPersonalNote?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          );

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property ConfirmationPersonalNote

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ConfirmationPersonalNote?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property ReplyToEmail

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ReplyToEmail?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property ReturnPathDomain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ReturnPathDomain?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    class UpdateTemplateRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    class UpdateTemplateRequest {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      constructor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      constructor(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Name?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Subject?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HtmlBody?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      TextBody?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Alias?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      TemplateType?: TemplateTypes,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      LayoutTemplate?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      );

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Alias

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Alias?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property HtmlBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HtmlBody?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property LayoutTemplate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LayoutTemplate?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Name?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Subject

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Subject?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property TemplateType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TemplateType?: TemplateTypes;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property TextBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TextBody?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      class UpdateWebhookRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      class UpdateWebhookRequest {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        constructor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        constructor(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        url?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        triggers?: WebhookRequestTriggers,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        httpAuth?: HttpAuth,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        httpHeaders?: Header[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        );

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property HttpAuth

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HttpAuth?: HttpAuth;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property HttpHeaders

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HttpHeaders?: Header[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Triggers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Triggers?: WebhookRequestTriggers;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Url

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Url?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  class WebhookFilteringParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  class WebhookFilteringParameters {}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Describes filtering parameters that can be used when retrieving webhooks.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  constructor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  constructor(messageStream: string);

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property messageStream

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    messageStream?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface Bounce

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface Bounce {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property BouncedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BouncedAt: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property CanActivate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CanActivate: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Content

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Content?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Description

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Description: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Details

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Details: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property DumpAvailable

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DumpAvailable: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Email

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Email: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property From

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      From: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Inactive

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Inactive: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property MessageID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MessageID: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property MessageStream

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MessageStream: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property RecordType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RecordType: 'Bounce';

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property ServerID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ServerID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Subject

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Subject: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Tag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Tag?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property TypeCode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TypeCode: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface BounceActivationResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface BounceActivationResponse {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Bounce

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bounce: Bounce;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Message

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Message: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface BounceCounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface BounceCounts {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      index signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [key: string]: any;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface BounceDump

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface BounceDump {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Body

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Body: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface BounceMetric

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface BounceMetric {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Count

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Count: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface Bounces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface Bounces {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Bounces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bounces: Bounce[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property TotalCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        TotalCount: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface BounceWebhook

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface BounceWebhook extends Bounce {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Metadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Metadata: Hash<string>;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface BounceWebhookTrigger

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface BounceWebhookTrigger extends WebhookTrigger {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property IncludeContent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                IncludeContent?: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface BrowserUsageCounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface BrowserUsageCounts {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Days

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Days: [
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Date: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [key: string]: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      index signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [key: string]: any;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface ClickCounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface ClickCounts {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Clicks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Clicks: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Days

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Days: [
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Date: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Clicks: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Unique: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Unique

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Unique: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface ClickEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface ClickEvent {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property ClickLocation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ClickLocation: LinkClickLocation;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Client

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Client: ClientDetails;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Geo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Geo: GeoLocation;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property MessageID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MessageID: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property MessageStream

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MessageStream: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OriginalLink: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property OS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OS: ClientDetails;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Platform

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Platform: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property ReceivedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ReceivedAt: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Recipient

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Recipient: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property RecordType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RecordType: 'Click';

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Tag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Tag: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property UserAgent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          UserAgent: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface ClickLocationCounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface ClickLocationCounts {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Days

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Days: [
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Date: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HTML: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Text: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property HTML

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HTML: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Text

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Text: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface ClickPlatformUsageCounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface ClickPlatformUsageCounts {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Days

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Days: [
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Date: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Desktop: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Mobile: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Unknown: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Desktop

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Desktop: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Mobile

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Mobile: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Unknown

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Unknown: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ClickWebhook

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ClickWebhook extends ClickEvent {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Metadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Metadata: Hash<string>;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ClientDetails

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ClientDetails {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Company

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Company: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Family

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Family: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface DataRemovalStatus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface DataRemovalStatus {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Status

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Status: DataRemovalStatusTypes;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface DefaultResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface DefaultResponse {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property ErrorCode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ErrorCode: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Message

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Message: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface DeliveryStatistics

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface DeliveryStatistics {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Bounces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bounces: BounceMetric[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property InactiveMails

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          InactiveMails: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface DeliveryWebhook

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface DeliveryWebhook {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property DeliveredAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DeliveredAt: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Details

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Details: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property MessageID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MessageID: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property MessageStream

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MessageStream: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Metadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Metadata: Hash<string>;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Recipient

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Recipient: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property RecordType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          RecordType: 'Delivery';

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property ServerID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ServerID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Tag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tag?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface Domain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface Domain {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property DKIMVerified

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DKIMVerified: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property ReturnPathDomainVerified

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ReturnPathDomainVerified: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property SPFVerified

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SPFVerified: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property WeakDKIM

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            WeakDKIM: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface DomainDetails

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface DomainDetails extends Domain {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property DKIMHost

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DKIMHost: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property DKIMPendingHost

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DKIMPendingHost: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property DKIMPendingTextValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DKIMPendingTextValue: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property DKIMRevokedHost

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DKIMRevokedHost: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property DKIMRevokedTextValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DKIMRevokedTextValue: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property DKIMTextValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DKIMTextValue: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property DKIMUpdateStatus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DKIMUpdateStatus: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property ReturnPathDomain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ReturnPathDomain: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property ReturnPathDomainCNAMEValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ReturnPathDomainCNAMEValue: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property SafeToRemoveRevokedKeyFromDNS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SafeToRemoveRevokedKeyFromDNS: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property SPFHost

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SPFHost: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property SPFTextValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SPFTextValue: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface Domains

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface Domains {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Domains

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Domains: Domain[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property TotalCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TotalCount: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface EmailClientUsageCounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface EmailClientUsageCounts {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Days

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Days: [
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Date: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [key: string]: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  index signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [key: string]: any;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface EmailPlaformUsageCounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface EmailPlaformUsageCounts {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Days

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Days: [
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Date: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Desktop?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      WebMail?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Mobile?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Unknown?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Desktop

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Desktop?: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Mobile

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Mobile?: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Unknown

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Unknown?: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property WebMail

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WebMail?: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface EmailReadTimesCounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface EmailReadTimesCounts {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Days

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Days: [
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Date: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [key: string]: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    index signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [key: string]: any;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface GeoLocation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface GeoLocation {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property City

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        City?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Coords

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Coords?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Country

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Country?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property CountryISOCode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CountryISOCode?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property IP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                IP?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Region

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Region?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property RegionISOCode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    RegionISOCode?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Zip

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Zip?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface Hash

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface Hash<T> {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          index signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [key: string]: T;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface HttpAuth

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface HttpAuth {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Password

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Password: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Username

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Username: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface InboundMessage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface InboundMessage {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Attachments

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Attachments: Attachment[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Bcc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bcc: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property BccFull

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BccFull: InboundRecipient[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Cc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cc: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property CcFull

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CcFull: InboundRecipient[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Date: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property From

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                From: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property FromFull

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FromFull: InboundRecipient;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property FromName

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    FromName: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property MailboxHash

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MailboxHash: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property MessageID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MessageID: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property MessageStream

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MessageStream: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property OriginalRecipient

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OriginalRecipient: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property ReplyTo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ReplyTo: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Status

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Status: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Subject

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Subject: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Tag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Tag?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property To

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property ToFull

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ToFull: InboundRecipient[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface InboundMessageDetails

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface InboundMessageDetails extends InboundMessage {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property BlockedReason

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BlockedReason: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Headers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Headers: Header[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property HtmlBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HtmlBody: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property StrippedTextReply

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  StrippedTextReply: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property TextBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TextBody: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface InboundMessages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface InboundMessages {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property InboundMessages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        InboundMessages: InboundMessage[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property TotalCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          TotalCount: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface InboundRecipient

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface InboundRecipient extends Recipient {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property MailboxHash

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MailboxHash: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface InboundRule

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface InboundRule {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Rule

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Rule: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface InboundRules

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface InboundRules {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property InboundRules

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        InboundRules: InboundRule[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property TotalCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          TotalCount: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface InboundWebhook

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface InboundWebhook {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Attachments

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Attachments: Attachment[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Bcc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bcc: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property BccFull

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BccFull: InboundRecipient[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Cc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Cc: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property CcFull

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CcFull: InboundRecipient[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Date: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property From

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          From: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property FromFull

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            FromFull: InboundRecipient;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property FromName

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              FromName: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Headers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Headers: Header[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property HtmlBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HtmlBody: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property MailboxHash

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MailboxHash: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property MessageID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MessageID: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property MessageStream

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MessageStream: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property OriginalRecipient

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          OriginalRecipient: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property RawEmail

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RawEmail?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property ReplyTo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ReplyTo: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property StrippedTextReply

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                StrippedTextReply: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Subject

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Subject: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Tag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Tag?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property TextBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      TextBody: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property To

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property ToFull

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ToFull: InboundRecipient[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface MessageSendingResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface MessageSendingResponse extends DefaultResponse {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Bcc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bcc?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Cc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Cc?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property MessageID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MessageID: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property SubmittedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SubmittedAt: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property To

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface MessageStream

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface MessageStream {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property ArchivedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ArchivedAt?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property CreatedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CreatedAt: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Description

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Description: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property ExpectedPurgeDate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ExpectedPurgeDate?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ID: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property MessageStreamType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MessageStreamType: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property ServerID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ServerID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property SubscriptionManagementConfiguration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SubscriptionManagementConfiguration: SubscriptionManagementConfiguration;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property UpdatedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UpdatedAt?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface MessageStreamArchiveResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface MessageStreamArchiveResponse {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property ExpectedPurgeDate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ExpectedPurgeDate: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property ServerID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ServerID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface MessageStreams

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface MessageStreams {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property MessageStreams

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MessageStreams: MessageStream[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property TotalCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          TotalCount: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface MessageStreamUnarchiveResponse

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface MessageStreamUnarchiveResponse {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property ArchivedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ArchivedAt?: null;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property CreatedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CreatedAt: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Description

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Description: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property ExpectedPurgeDate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ExpectedPurgeDate?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ID: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property MessageStreamType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MessageStreamType: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property ServerID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ServerID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property SubscriptionManagementConfiguration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SubscriptionManagementConfiguration: SubscriptionManagementConfiguration;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property UpdatedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UpdatedAt?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface OpenCounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface OpenCounts {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Days

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Days: [
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Date: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Opens: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Unique: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Opens

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Opens: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Unique

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Unique: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface OpenEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface OpenEvent {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Client

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Client: ClientDetails;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Geo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Geo: GeoLocation;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property MessageID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MessageID: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property MessageStream

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MessageStream: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property OS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    OS: ClientDetails;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Platform

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Platform: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property ReadSeconds

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ReadSeconds: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property ReceivedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ReceivedAt: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Recipient

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Recipient: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property RecordType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RecordType: 'Open';

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Tag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Tag: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property UserAgent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UserAgent: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface OpenWebhook

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface OpenWebhook extends OpenEvent {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property FirstOpen

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      FirstOpen: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Metadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Metadata: Hash<string>;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface OpenWebhookTrigger

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface OpenWebhookTrigger extends WebhookTrigger {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property PostFirstOpenOnly

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PostFirstOpenOnly?: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface OutboundMessage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface OutboundMessage {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Attachments

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Attachments: string[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Bcc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bcc: Recipient[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Cc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Cc: Recipient[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property From

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      From: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property MessageID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MessageID: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property MessageStream

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MessageStream: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Metadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Metadata: Hash<string>;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property ReceivedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ReceivedAt: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Recipients

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Recipients: string[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Sandboxed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Sandboxed: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Status

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Status: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Subject

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Subject: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Tag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Tag?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property To

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To: Recipient[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TrackLinks: LinkTrackingOptions;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property TrackOpens

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TrackOpens: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface OutboundMessageClicks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface OutboundMessageClicks {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Clicks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Clicks: ClickEvent[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property TotalCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TotalCount: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface OutboundMessageDetails

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface OutboundMessageDetails extends OutboundMessage {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Body

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Body: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property HtmlBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HtmlBody?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property MessageEvents

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MessageEvents: OutboundMessageEvents.MessageEvent[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property TextBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TextBody?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface OutboundMessageDump

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface OutboundMessageDump {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Body

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Body: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface OutboundMessageOpens

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface OutboundMessageOpens {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Opens

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Opens: OpenEvent[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property TotalCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        TotalCount: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface OutboundMessages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface OutboundMessages {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Messages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Messages: OutboundMessage[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property TotalCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TotalCount: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface OutboundStatistics

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface OutboundStatistics {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Bounced

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bounced: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property BounceRate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BounceRate: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Opens

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Opens: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Sent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Sent: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property SMTPApiErrors

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SMTPApiErrors: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property SpamComplaints

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SpamComplaints: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property SpamComplaintsRate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SpamComplaintsRate: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property TotalClicks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TotalClicks: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property TotalTrackedLinksSent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TotalTrackedLinksSent: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Tracked

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Tracked: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property UniqueLinksClicked

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UniqueLinksClicked: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property UniqueOpens

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UniqueOpens: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property WithClientRecorded

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          WithClientRecorded: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property WithLinkTracking

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            WithLinkTracking: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property WithOpenTracking

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WithOpenTracking: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property WithPlatformRecorded

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                WithPlatformRecorded: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property WithReadTimeRecorded

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WithReadTimeRecorded: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface Recipient

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface Recipient {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Email

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Email: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface SentCounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface SentCounts {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Days

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Days: [
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Date: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Sent: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Sent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sent: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface Server

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface Server {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property ApiTokens

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ApiTokens: string[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property BounceHookUrl

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    BounceHookUrl?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property ClickHookUrl

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ClickHookUrl?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Color

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Color: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property DeliveryHookUrl

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DeliveryHookUrl?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property DeliveryType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DeliveryType: ServerDeliveryTypes;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property EnableSmtpApiErrorHooks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EnableSmtpApiErrorHooks: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property InboundAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  InboundAddress: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property InboundDomain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    InboundDomain?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property InboundHash

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InboundHash: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property InboundHookUrl

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        InboundHookUrl?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property InboundSpamThreshold

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          InboundSpamThreshold: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property IncludeBounceContentInHook

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            IncludeBounceContentInHook: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property OpenHookUrl

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OpenHookUrl?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property PostFirstOpenOnly

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PostFirstOpenOnly: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property RawEmailEnabled

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    RawEmailEnabled: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ServerLink: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property SmtpApiActivated

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SmtpApiActivated: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          TrackLinks: LinkTrackingOptions;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property TrackOpens

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TrackOpens?: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface Servers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface Servers {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Servers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Servers: Server[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property TotalCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TotalCount: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface Signature

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface Signature {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Confirmed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Confirmed: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Domain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Domain: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property EmailAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          EmailAddress: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property ReplyToEmailAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ReplyToEmailAddress: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface SignatureDetails

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface SignatureDetails extends DomainDetails {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property ConfirmationPersonalNote

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ConfirmationPersonalNote: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Confirmed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Confirmed: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Domain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Domain: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property EmailAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          EmailAddress: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property ReplyToEmailAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ReplyToEmailAddress: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface Signatures

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface Signatures {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property SenderSignatures

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SenderSignatures: Signature[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property TotalCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TotalCount: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface SpamComplaintWebhook

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface SpamComplaintWebhook {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property BouncedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BouncedAt: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property CanActivate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CanActivate: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Content

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Content?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Description

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Description: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Details

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Details: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property DumpAvailable

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DumpAvailable: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Email

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Email: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property From

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    From: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Inactive

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Inactive: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property MessageID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MessageID: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property MessageStream

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MessageStream: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Metadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Metadata: Hash<string>;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property RecordType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RecordType: 'SpamComplaint';

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property ServerID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ServerID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Subject

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Subject: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Tag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Tag?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property TypeCode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TypeCode: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface SpamCounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface SpamCounts {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Days

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Days: [
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Date: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SpamComplaint: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property SpamComplaint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SpamComplaint: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface SpamWebhookTrigger

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface SpamWebhookTrigger extends WebhookTrigger {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property IncludeContent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      IncludeContent?: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface SubscriptionChangeWebhook

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface SubscriptionChangeWebhook {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property ChangedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ChangedAt: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property MessageID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MessageID: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property MessageStream

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MessageStream: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Metadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Metadata: Hash<string>;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Origin

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Origin: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Recipient

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Recipient: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property RecordType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RecordType: 'SubscriptionChange';

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property ServerID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ServerID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property SuppressionReason

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SuppressionReason: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property SuppressSending

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SuppressSending: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Tag

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tag?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface SubscriptionManagementConfiguration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface SubscriptionManagementConfiguration {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property UnsubscribeHandlingType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UnsubscribeHandlingType: UnsubscribeHandlingTypes;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface Suppression

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface Suppression {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property CreatedAt

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CreatedAt: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property EmailAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EmailAddress: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Origin

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Origin: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property SuppressionReason

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SuppressionReason: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface SuppressionEntries

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface SuppressionEntries {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Suppressions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Suppressions: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                EmailAddress: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface Suppressions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface Suppressions {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Suppressions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Suppressions: Suppression[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface SuppressionStatus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface SuppressionStatus {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property EmailAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        EmailAddress: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Message

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Message: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Status

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Status: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface SuppressionStatuses

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface SuppressionStatuses {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Suppressions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Suppressions: SuppressionStatus[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface Template

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface Template {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Active

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Active: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Alias

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Alias: string | null;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property AssociatedServerId

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AssociatedServerId: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property HtmlBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HtmlBody: string | null;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property LayoutTemplate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LayoutTemplate: string | null;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Subject

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Subject: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property TemplateId

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TemplateId: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property TemplateType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TemplateType: TemplateTypes;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property TextBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      TextBody: string | null;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface TemplateInList

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface TemplateInList {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Active

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Active: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Alias

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Alias: string | null;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property LayoutTemplate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LayoutTemplate: string | null;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property TemplateId

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TemplateId: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property TemplateType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TemplateType: TemplateTypes;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface TemplatePushAction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface TemplatePushAction {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Action

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Action: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Alias

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Alias: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Name: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property TemplateId

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TemplateId?: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface Templates

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface Templates {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Templates

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Templates: TemplateInList[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property TotalCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TotalCount: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface TemplatesPush

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface TemplatesPush {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Templates

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Templates: TemplatePushAction[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property TotalCount

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          TotalCount: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface TemplateValidation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface TemplateValidation {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property AllContentIsValid

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AllContentIsValid: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property HtmlBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HtmlBody: ValidationSection;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Subject

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Subject: ValidationSection;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property SuggestedTemplateModel

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SuggestedTemplateModel: object;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property TextBody

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      TextBody: ValidationSection;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface TrackedEmailCounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface TrackedEmailCounts {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Days

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Days: [
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Date: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Tracked: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Tracked

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Tracked: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ValidationSection

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ValidationSection {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property ContentIsValid

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ContentIsValid: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property RenderedContent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RenderedContent: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property ValidationErrors

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ValidationErrors: object;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface Webhook

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface Webhook {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property HttpAuth

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HttpAuth?: HttpAuth;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property HttpHeaders

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HttpHeaders?: Header[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ID: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property MessageStream

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MessageStream: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property Triggers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Triggers: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Open: OpenWebhookTrigger;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Click: WebhookTrigger;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Delivery: WebhookTrigger;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bounce: BounceWebhookTrigger;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SpamComplaint: SpamWebhookTrigger;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SubscriptionChange: WebhookTrigger;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                };

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property Url

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Url: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface WebhookRequestTriggers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface WebhookRequestTriggers {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property Bounce

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bounce?: BounceWebhookTrigger;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Click

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Click?: WebhookTrigger;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property Delivery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Delivery?: WebhookTrigger;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            property Open

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Open?: OpenWebhookTrigger;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property SpamComplaint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SpamComplaint?: SpamWebhookTrigger;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property SubscriptionChange

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SubscriptionChange?: WebhookTrigger;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface Webhooks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface Webhooks {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property Webhooks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Webhooks: Webhook[];

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface WebhookTrigger

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface WebhookTrigger {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        property Enabled

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Enabled: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          enum BounceType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          enum BounceType {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HardBounce = 'HardBounce',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Transient = 'Transient',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Unsubscribe = 'Unsubscribe',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Subscribe = 'Subscribe',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AutoResponder = 'AutoResponder',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AddressChange = 'AddressChange',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DnsError = 'DnsError',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SpamNotification = 'SpamNotification',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          OpenRelayTest = 'OpenRelayTest',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Unknown = 'Unknown',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SoftBounce = 'SoftBounce',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          VirusNotification = 'VirusNotification',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ChallengeVerification = 'ChallengeVerification',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BadEmailAddress = 'BadEmailAddress',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SpamComplaint = 'SpamComplaint',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ManuallyDeactivated = 'ManuallyDeactivated',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Unconfirmed = 'Unconfirmed',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Blocked = 'Blocked',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SMTPApiError = 'SMTPApiError',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          InboundError = 'InboundError',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DMARCPolicy = 'DMARCPolicy',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          TemplateRenderingFailed = 'TemplateRenderingFailed',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            member AddressChange

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AddressChange = 'AddressChange'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              member AutoResponder

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AutoResponder = 'AutoResponder'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                member BadEmailAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BadEmailAddress = 'BadEmailAddress'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  member Blocked

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Blocked = 'Blocked'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    member ChallengeVerification

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ChallengeVerification = 'ChallengeVerification'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      member DMARCPolicy

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DMARCPolicy = 'DMARCPolicy'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        member DnsError

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DnsError = 'DnsError'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          member HardBounce

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HardBounce = 'HardBounce'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            member InboundError

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            InboundError = 'InboundError'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              member ManuallyDeactivated

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ManuallyDeactivated = 'ManuallyDeactivated'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                member OpenRelayTest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OpenRelayTest = 'OpenRelayTest'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  member SMTPApiError

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SMTPApiError = 'SMTPApiError'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    member SoftBounce

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SoftBounce = 'SoftBounce'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      member SpamComplaint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SpamComplaint = 'SpamComplaint'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        member SpamNotification

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SpamNotification = 'SpamNotification'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          member Subscribe

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Subscribe = 'Subscribe'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            member TemplateRenderingFailed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TemplateRenderingFailed = 'TemplateRenderingFailed'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              member Transient

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Transient = 'Transient'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                member Unconfirmed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Unconfirmed = 'Unconfirmed'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  member Unknown

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Unknown = 'Unknown'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    member Unsubscribe

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Unsubscribe = 'Unsubscribe'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      member VirusNotification

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      VirusNotification = 'VirusNotification'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        enum BounceTypeCode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        enum BounceTypeCode {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HardBounce = 1,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Transient = 2,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Unsubscribe = 16,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Subscribe = 32,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AutoResponder = 64,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AddressChange = 128,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DnsError = 256,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SpamNotification = 512,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        OpenRelayTest = 1024,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Unknown = 2048,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SoftBounce = 4096,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        VirusNotification = 8192,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ChallengeVerification = 16384,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BadEmailAddress = 100000,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SpamComplaint = 100001,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ManuallyDeactivated = 100002,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Unconfirmed = 100003,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Blocked = 100006,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SMTPApiError = 100007,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        InboundError = 100008,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DMARCPolicy = 100009,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        TemplateRenderingFailed = 100010,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          member AddressChange

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AddressChange = 128

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            member AutoResponder

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AutoResponder = 64

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              member BadEmailAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              BadEmailAddress = 100000

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                member Blocked

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Blocked = 100006

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  member ChallengeVerification

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ChallengeVerification = 16384

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    member DMARCPolicy

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    DMARCPolicy = 100009

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      member DnsError

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DnsError = 256

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        member HardBounce

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        HardBounce = 1

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          member InboundError

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          InboundError = 100008

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            member ManuallyDeactivated

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ManuallyDeactivated = 100002

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              member OpenRelayTest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OpenRelayTest = 1024

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                member SMTPApiError

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SMTPApiError = 100007

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  member SoftBounce

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SoftBounce = 4096

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    member SpamComplaint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SpamComplaint = 100001

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      member SpamNotification

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SpamNotification = 512

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        member Subscribe

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Subscribe = 32

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          member TemplateRenderingFailed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          TemplateRenderingFailed = 100010

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            member Transient

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Transient = 2

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              member Unconfirmed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Unconfirmed = 100003

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                member Unknown

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Unknown = 2048

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  member Unsubscribe

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Unsubscribe = 16

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    member VirusNotification

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    VirusNotification = 8192

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      enum DataRemovalStatusTypes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      enum DataRemovalStatusTypes {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pending = 'Pending',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Done = 'Done',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        member Done

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Done = 'Done'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          member Pending

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pending = 'Pending'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            enum InboundMessageStatus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            enum InboundMessageStatus {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Queued = 'queued',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Sent = 'sent',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Processed = 'processed',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Blocked = 'blocked',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Failed = 'failed',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Scheduled = 'scheduled',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              member Blocked

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Blocked = 'blocked'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                member Failed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Failed = 'failed'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  member Processed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Processed = 'processed'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    member Queued

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Queued = 'queued'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      member Scheduled

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Scheduled = 'scheduled'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        member Sent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Sent = 'sent'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          enum LinkClickLocation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          enum LinkClickLocation {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HTML = 'HTML',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Text = 'Text',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            member HTML

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HTML = 'HTML'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              member Text

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Text = 'Text'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                enum LinkTrackingOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                enum LinkTrackingOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                TextOnly = 'TextOnly',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HtmlOnly = 'HtmlOnly',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HtmlAndText = 'HtmlAndText',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                None = 'None',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  member HtmlAndText

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HtmlAndText = 'HtmlAndText'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    member HtmlOnly

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    HtmlOnly = 'HtmlOnly'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      member None

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      None = 'None'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        member TextOnly

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        TextOnly = 'TextOnly'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          enum OutboundMessageStatus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          enum OutboundMessageStatus {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Queued = 'queued',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Sent = 'sent',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Processed = 'processed',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            member Processed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Processed = 'processed'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              member Queued

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Queued = 'queued'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                member Sent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Sent = 'sent'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  enum ServerDeliveryTypes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  enum ServerDeliveryTypes {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Live = 'Live',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Sandbox = 'Sandbox',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    member Live

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Live = 'Live'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      member Sandbox

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sandbox = 'Sandbox'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        enum SuppressionOrigin

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        enum SuppressionOrigin {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Recipient = 'Recipient',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Customer = 'Customer',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Admin = 'Admin',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          member Admin

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Admin = 'Admin'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            member Customer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Customer = 'Customer'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              member Recipient

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Recipient = 'Recipient'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                enum SuppressionReason

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                enum SuppressionReason {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                HardBounce = 'HardBounce',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SpamComplaint = 'SpamComplaint',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ManualSuppression = 'ManualSuppression',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  member HardBounce

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HardBounce = 'HardBounce'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    member ManualSuppression

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ManualSuppression = 'ManualSuppression'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      member SpamComplaint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SpamComplaint = 'SpamComplaint'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        enum TemplateTypes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        enum TemplateTypes {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Standard = 'Standard',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Layout = 'Layout',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          member Layout

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Layout = 'Layout'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            member Standard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Standard = 'Standard'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              enum UnsubscribeHandlingTypes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              enum UnsubscribeHandlingTypes {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              None = 'None',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Postmark = 'Postmark',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Custom = 'Custom',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                member Custom

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Custom = 'Custom'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  member None

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  None = 'None'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    member Postmark

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Postmark = 'Postmark'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type Callback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type Callback<T> = (error: Errors.PostmarkError | null, result: T | null) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • A standard node callback. All errors returned to this callback will be a in namespace 'PostmarkError'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type CreateSuppressionsRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type CreateSuppressionsRequest = SuppressionEntries;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type DeleteSuppressionsRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type DeleteSuppressionsRequest = CreateSuppressionsRequest;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          namespace Models.ClientOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          namespace Models.ClientOptions {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            class Configuration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            class Configuration {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              constructor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              constructor(useHttps?: boolean, requestHost?: string, timeout?: number);

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                property requestHost

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                requestHost?: string;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  property timeout

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  timeout?: number;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    property useHttps

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    useHttps?: boolean;

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      enum AuthHeaderNames

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      enum AuthHeaderNames {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SERVER_TOKEN = 'X-Postmark-Server-Token',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ACCOUNT_TOKEN = 'X-Postmark-Account-Token',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        member ACCOUNT_TOKEN

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ACCOUNT_TOKEN = 'X-Postmark-Account-Token'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          member SERVER_TOKEN

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SERVER_TOKEN = 'X-Postmark-Server-Token'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            enum HttpMethod

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            enum HttpMethod {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GET = 'GET',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            POST = 'POST',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DELETE = 'DELETE',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PUT = 'PUT',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OPTIONS = 'OPTIONS',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HEAD = 'HEAD',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PATCH = 'PATCH',
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              member DELETE

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DELETE = 'DELETE'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                member GET

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GET = 'GET'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  member HEAD

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  HEAD = 'HEAD'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    member OPTIONS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    OPTIONS = 'OPTIONS'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      member PATCH

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      PATCH = 'PATCH'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        member POST

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        POST = 'POST'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          member PUT

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PUT = 'PUT'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Package Files (44)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Dependencies (1)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Dev Dependencies (15)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Peer Dependencies (0)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            No peer dependencies.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Badge

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To add a badge like this onejsDocs.io badgeto your package's README, use the codes available below.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/postmark.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Markdown
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue)](https://www.jsdocs.io/package/postmark)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • HTML
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              <a href="https://www.jsdocs.io/package/postmark"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>