A general location

interface Address {
    country: string;
    region: string;
    subRegion: string;
}

Properties

country: string

The country name

TODO: Check if this can be null

region: string

The state name

TODO: Check if this can be null

subRegion: string

The county/city name

TODO: Check if this can be null

Generated using TypeDoc