CardAddress

@Serializable
data class CardAddress(val addressLine1: String? = null, val addressLine2: String? = null, val locality: String? = null, val administrativeArea: String? = null, val countryCode: String? = null, val postalCode: String? = null, val phoneNumber: String? = null)

An address associated with a payment card.

Constructors

Link copied to clipboard
constructor(addressLine1: String? = null, addressLine2: String? = null, locality: String? = null, administrativeArea: String? = null, countryCode: String? = null, postalCode: String? = null, phoneNumber: String? = null)

Properties

Link copied to clipboard
val addressLine1: String? = null

The first line of the address associated with the payment card or null if not available.

Link copied to clipboard
val addressLine2: String? = null

The second line of the address associated with the payment card or null if not available/applicable.

Link copied to clipboard

The administrative area of the payment card address or null if not available.

Link copied to clipboard
val countryCode: String? = null

The country code (ISO 3166) of the address associated with the payment card or null if not available.

Link copied to clipboard
val locality: String? = null

The locality of the payment card address or null if not available.

Link copied to clipboard
val phoneNumber: String? = null

The phone number associated with the payment card or null if not available.

Link copied to clipboard
val postalCode: String? = null

The postal code (in local format) of the address associated with the payment card or null if not available.