The shipping address details of the shipment.

Address

interface Address {
    AddressLine1?: string;
    AddressLine2?: string;
    AddressLine3?: string;
    AddressType?: AddressTypeEnum;
    City?: string;
    CountryCode?: string;
    County?: string;
    District?: string;
    Name?: string;
    Phone?: string;
    PostalCode?: string;
    StateOrRegion?: string;
}

Properties

AddressLine1?: string

The street address.

Address

AddressLine2?: string

Additional street address information, if required.

Address

AddressLine3?: string

Additional street address information, if required.

Address

AddressType?: AddressTypeEnum

Address

City?: string

The city.

Address

CountryCode?: string

The country code.

Address

County?: string

The county.

Address

District?: string

The district.

Address

Name?: string

The name.

Address

Phone?: string

The phone number.

Address

PostalCode?: string

The postal code.

Address

StateOrRegion?: string

The state or region.

Address