ProfileShippingAddress

data class ProfileShippingAddress(val address1: String? = null, val address2: String? = null, val address3: String? = null, val address4: String? = null, val city: String? = null, val country: String? = null, val county: String? = null, val postalCode: String? = null, val province: String? = null, val state: String? = null)

Constructors

Link copied to clipboard
constructor(address1: String? = null, address2: String? = null, address3: String? = null, address4: String? = null, city: String? = null, country: String? = null, county: String? = null, postalCode: String? = null, province: String? = null, state: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val address1: String? = null

The first line of a customer address.

Link copied to clipboard
val address2: String? = null

The second line of a customer address.

Link copied to clipboard
val address3: String? = null

The third line of a customer address.

Link copied to clipboard
val address4: String? = null

The fourth line of a customer address.

Link copied to clipboard
val city: String? = null

The city in which a customer lives.

Link copied to clipboard
val country: String? = null

The country in which a customer lives.

Link copied to clipboard
val county: String? = null

The county in which a customer lives.

Link copied to clipboard
val postalCode: String? = null

The postal code of a customer address.

Link copied to clipboard
val province: String? = null

The province in which a customer lives.

Link copied to clipboard
val state: String? = null

The state in which a customer lives.