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

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

Link copied to clipboard

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

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

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

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