Interface representing the constructor for creating instances of MessageContextObject.

interface MessageContextObjectConstructor {
    new MessageContextObjectConstructornew (toEmail: string, toName: string): MessageContextObject;
    prototype: MessageContextObject;
}

Constructors

Properties

Constructors

  • Creates a new instance of MessageContextObject.

    Parameters

    • toEmail: string

      The email address of the recipient.

    • toName: string

      The name of the recipient.

    Returns MessageContextObject

    A new instance of MessageContextObject.

Properties

The prototype of MessageContextObject.