A physical address with varying degrees of precision. A more precise address can provide more accurate results than country code and postal code alone.

VariablePrecisionAddress

interface VariablePrecisionAddress {
    addressLine1?: string;
    addressLine2?: string;
    addressLine3?: string;
    city?: string;
    countryCode: string;
    districtOrCounty?: string;
    postalCode: string;
    stateOrRegion?: string;
}

Properties

addressLine1?: string

The first line of the address.

VariablePrecisionAddress

addressLine2?: string

Additional address information, if required.

VariablePrecisionAddress

addressLine3?: string

Additional address information, if required.

VariablePrecisionAddress

city?: string

The city where the person, business, or institution is located. This property should not be used in Japan.

VariablePrecisionAddress

countryCode: string

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

VariablePrecisionAddress

districtOrCounty?: string

The district or county where the person, business, or institution is located.

VariablePrecisionAddress

postalCode: string

The postal code of the address.

VariablePrecisionAddress

stateOrRegion?: string

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

VariablePrecisionAddress