Address of the customer.

interface Address {
    address1: string;
    address2?: string;
    city: string;
    countryCode: string;
    postalCode: string;
    stateProvince?: string;
}

Properties

address1: string

The first line of the address.

address2?: string

The second line of the address.

city: string

City.

countryCode: string

Country code. Represents ISO-3166 Alpha 2 country code.

Example

"GB"
postalCode: string

Postal code.

stateProvince?: string

US state postal abbreviation. Not used for non-US territories.