The shipping address for the order.

Export

Address

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

Properties

AddressLine1?: string

The street address.

Memberof

Address

AddressLine2?: string

Additional street address information, if required.

Memberof

Address

AddressLine3?: string

Additional street address information, if required.

Memberof

Address

The address type of the shipping address.

Memberof

Address

City?: string

The city

Memberof

Address

CountryCode?: string

The country code. A two-character country code, in ISO 3166-1 alpha-2 format.

Memberof

Address

County?: string

The county.

Memberof

Address

District?: string

The district.

Memberof

Address

ExtendedFields?: AddressExtendedFields

Memberof

Address

Municipality?: string

The municipality.

Memberof

Address

Name: string

The name.

Memberof

Address

Phone?: string

The phone number. Not returned for Fulfillment by Amazon (FBA) orders.

Memberof

Address

PostalCode?: string

The postal code.

Memberof

Address

StateOrRegion?: string

The state or region.

Memberof

Address