BillingAddress

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

The representation of the legal residence of a cardholder for purposes of billing in the Sudo Platform Virtual Cards SDK.

Constructors

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

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard

String Street address for the cardholder's legal residence.

Link copied to clipboard
val addressLine2: String? = null

String Optional secondary address information for the cardholder's legal residence.

Link copied to clipboard

String City of the cardholder's legal residence.

Link copied to clipboard

String ISO-3166 Alpha-2 country code of the cardholder's legal residence.

Link copied to clipboard

String Postal code for the cardholder's legal residence.

Link copied to clipboard

String State or province of the cardholder's legal residence.