The postal address information.

Export

Address

interface Address {
    AddressLine1: string;
    AddressLine2?: string;
    AddressLine3?: string;
    City: string;
    CountryCode: string;
    DistrictOrCounty?: string;
    Email: string;
    Name: string;
    Phone: string;
    PostalCode: string;
    StateOrProvinceCode?: string;
}

Properties

AddressLine1: string

The street address information.

Memberof

Address

AddressLine2?: string

Additional street address information.

Memberof

Address

AddressLine3?: string

Additional street address information.

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

DistrictOrCounty?: string

The district or county.

Memberof

Address

Email: string

The email address.

Memberof

Address

Name: string

The name of the addressee, or business name.

Memberof

Address

Phone: string

The phone number.

Memberof

Address

PostalCode: string

The zip code or postal code.

Memberof

Address

StateOrProvinceCode?: string

The state or province code. Note. Required in the Canada, US, and UK marketplaces. Also required for shipments originating from China.

Memberof

Address