BillingAddress

data class BillingAddress(val city: String?, val country: String?, val state: String?, val postalCode: String?, val addressLine1: String?, val addressLine2: String?)

A postal billing or shipping address.

Constructors

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

Properties

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

Primary street address.

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

Apartment, suite, or other secondary address information.

Link copied to clipboard
val city: String?

City name.

Link copied to clipboard

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

State or province code.