A physical address.

Export

Address

interface Address {
    addressLine1: string;
    addressLine2?: string;
    addressLine3?: string;
    city?: string;
    countryCode: string;
    districtOrCounty?: string;
    name: string;
    phone?: string;
    postalCode: string;
    stateOrRegion: string;
}

Properties

addressLine1: string

The first line of the address.

Memberof

Address

addressLine2?: string

Additional address information, if required.

Memberof

Address

addressLine3?: string

Additional address information, if required.

Memberof

Address

city?: string

The city where the person, business, or institution is located. This property is required in all countries except Japan. It should not be used in Japan.

Memberof

Address

countryCode: string

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

Memberof

Address

districtOrCounty?: string

The district or county where the person, business, or institution is located.

Memberof

Address

name: string

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

Memberof

Address

phone?: string

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

Memberof

Address

postalCode: string

The postal code of the address.

Memberof

Address

stateOrRegion: string

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

Memberof

Address