A geographical location representing a country and optionally a state within this country. A location can only be assigned to one Zone.

interface Location {
    country: string;
    state?: string;
}

Properties

Properties

country: string

Country code of the geographic location.

state?: string

State within the country.

Generated using TypeDoc