Represents the changed customer address information.

interface UpdateAddressRequest {
    address1?: string;
    address2?: string;
    city?: 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.

postalCode?: string

Postal code.

stateProvince?: string

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