UserAddresses

data class UserAddresses(val country: String? = null, val formatted: String? = null, val locality: String? = null, val postalCode: String? = null, val primary: Boolean? = null, val region: String? = null, val streetAddress: String? = null, val type: String? = null)

Constructors

Link copied to clipboard
constructor(country: String? = null, formatted: String? = null, locality: String? = null, postalCode: String? = null, primary: Boolean? = null, region: String? = null, streetAddress: String? = null, type: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val country: String? = null

The country that this address is in.

Link copied to clipboard
val formatted: String? = null

The name that is typically displayed when the address is shown for display.

Link copied to clipboard
val locality: String? = null

The address locality.

Link copied to clipboard
val postalCode: String? = null

The postal code of the address.

Link copied to clipboard
val primary: Boolean? = null

When true, this is the primary address associated with the user.

Link copied to clipboard
val region: String? = null

The region of the address.

Link copied to clipboard
val streetAddress: String? = null

The street of the address.

Link copied to clipboard
val type: String? = null

The type of address.