Location identifier.

Location

interface Location {
    countryCode?: string;
    locationCode?: string;
    type?: string;
}

Properties

countryCode?: string

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

Location

locationCode?: string

Location code.

Location

type?: string

Type of location identification.

Location