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

Location

interface Location {
    city?: string;
    countryCode?: string;
    postalCode?: string;
    stateOrRegion?: string;
}

Properties

city?: string

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

Location

countryCode?: string

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

Location

postalCode?: string

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

Location

stateOrRegion?: string

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

Location