The container for address extended fields (such as street name and street number). Currently only available with Brazil shipping addresses.

AddressExtendedFields

interface AddressExtendedFields {
    Complement?: string;
    Neighborhood?: string;
    StreetName?: string;
    StreetNumber?: string;
}

Properties

Complement?: string

The floor number/unit number in the building/private house number.

AddressExtendedFields

Neighborhood?: string

The neighborhood. This value is only used in some countries (such as Brazil).

AddressExtendedFields

StreetName?: string

The street name.

AddressExtendedFields

StreetNumber?: string

The house, building, or property number associated with the location's street address.

AddressExtendedFields