A physical address.

Export

Address

interface Address {
    addressLine1: string;
    addressLine2?: string;
    addressLine3?: string;
    city?: string;
    countryCode: string;
    county?: string;
    district?: string;
    name: string;
    phone?: string;
    postalOrZipCode?: string;
    stateOrRegion?: string;
}

Properties

addressLine1: string

First line of street 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.

Memberof

Address

countryCode: string

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

Memberof

Address

county?: string

The county where person, business or institution is located.

Memberof

Address

district?: string

The district where person, business or institution is located.

Memberof

Address

name: string

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

Memberof

Address

phone?: string

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

Memberof

Address

postalOrZipCode?: string

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

Memberof

Address

stateOrRegion?: string

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

Memberof

Address