export AddressDeets

interface AddressDeets {
    city?: null | string;
    common_name?: null | string;
    country_code?: null | string;
    lat_long?: null | string;
    line1?: null | string;
    line2?: null | string;
    postal_code?: null | string;
    state_region?: null | string;
}

Properties

city?: null | string

City name

common_name?: null | string

Common name of the address like Central Park, If we already have this in our db, it will pick that address by default

country_code?: null | string

Two-letter country code <see href="https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2\">ISO 3166-1 alpha-2

lat_long?: null | string

Latitude and Longitude

line1?: null | string

Address line 1

line2?: null | string

Address line 2

postal_code?: null | string

Postal code or ZIP code

state_region?: null | string

State, region or province