AddressResponse

data class AddressResponse(val addressLine1: String? = null, val addressLine2: String? = null, val addressLine3: String? = null, val city: String? = null, val country: String, val postalCode: String? = null, val state: String? = null)

The shipping address of the customer.

Constructors

Link copied to clipboard
constructor(addressLine1: String? = null, addressLine2: String? = null, addressLine3: String? = null, city: String? = null, country: String, postalCode: String? = null, state: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val addressLine1: String? = null

The address line1.

Link copied to clipboard
val addressLine2: String? = null

The address line2.

Link copied to clipboard
val addressLine3: String? = null

The address line3.

Link copied to clipboard
val city: String? = null

The city name.

Link copied to clipboard

The country name.

Link copied to clipboard
val postalCode: String? = null

The postal code.

Link copied to clipboard
val state: String? = null

The state name.