AccountBillingAddress

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

A billing or mailing address associated with an account.

Constructors

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

Properties

Link copied to clipboard
@SerializedName(value = "line_1")
val addressLine1: String? = null

Primary street address.

Link copied to clipboard
@SerializedName(value = "line_2")
val addressLine2: String? = null

Secondary address line (apartment, suite, etc.).

Link copied to clipboard
val city: String? = null

City name.

Link copied to clipboard
val country: String? = null

ISO 3166-1 alpha-2 country code.

Link copied to clipboard
@SerializedName(value = "postal_code")
val postalCode: String?

ZIP or postal code.

Link copied to clipboard
val state: String? = null

State or province.