Interface TrackingAddressInterfaceInternal

Interface version of TrackingAddress

interface TrackingAddressInterface {
    city: null | string;
    country_code: null | string;
    postal_code: null | string;
    residential: null | boolean;
    state_or_province_code: null | string;
    street: null | string[];
    urbanization_code: null | string;
}

Implemented by

Properties

city: null | string

The city the address is in

country_code: null | string

The two-letter code for the country the address is in

postal_code: null | string

The postal/zip code for the address

residential: null | boolean

Whether the address is a residential address

state_or_province_code: null | string

The code (two-letter for US and most other countries) for the state of province the address is in

street: null | string[]

The street address

urbanization_code: null | string

The urbanization code for the address

Only relevant for PR addresses