UpdateAddressRequest

data class UpdateAddressRequest(val stateProvince: String? = null, val city: String? = null, val postalCode: String? = null, val address1: String? = null, val address2: String? = null)

Data class representing the changed customer address.

Constructors

Link copied to clipboard
constructor(stateProvince: String? = null, city: String? = null, postalCode: String? = null, address1: String? = null, address2: String? = null)

Properties

Link copied to clipboard
val address1: String? = null

The first line of the address.

Link copied to clipboard
val address2: String? = null

The second line of the address.

Link copied to clipboard
val city: String? = null

The city of the address.

Link copied to clipboard
val postalCode: String? = null

The postal code of the address.

Link copied to clipboard
val stateProvince: String? = null

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