Address information for tracking the package.

TrackingAddress

interface TrackingAddress {
    city: string;
    country: string;
    state: string;
}

Properties

Properties

city: string

The city.

TrackingAddress

country: string

The country.

TrackingAddress

state: string

The state.

TrackingAddress