The address.

Address

interface Address {
    addressLine1: string;
    addressLine2?: string;
    addressLine3?: string;
    city: string;
    copyEmails?: string[];
    countryCode: string;
    email?: string;
    name: string;
    phoneNumber?: string;
    postalCode: string;
    stateOrRegion: string;
}

Properties

addressLine1: string

First line of that address.

Address

addressLine2?: string

Additional address information, if required.

Address

addressLine3?: string

Additional address information, if required.

Address

city: string

The city where the person, business or institution is located.

Address

copyEmails?: string[]

The email cc addresses of the contact associated with the address.

Address

countryCode: string

The two digit country code. In ISO 3166-1 alpha-2 format.

Address

email?: string

The email address of the contact associated with the address.

Address

name: string

The name of the person, business or institution at that address.

Address

phoneNumber?: string

The phone number of the person, business or institution located at that address.

Address

postalCode: string

The postal code of that address. It contains a series of letters or digits or both, sometimes including spaces or punctuation.

Address

stateOrRegion: string

The state or region where the person, business or institution is located.

Address