ThreeDSecurePostalAddress

data class ThreeDSecurePostalAddress(var givenName: String? = null, var surname: String? = null, var streetAddress: String? = null, var extendedAddress: String? = null, var line3: String? = null, var locality: String? = null, var region: String? = null, var postalCode: String? = null, var countryCodeAlpha2: String? = null, var phoneNumber: String? = null) : Parcelable

A class containing 3DS information about a postal address

Constructors

Link copied to clipboard
constructor(givenName: String? = null, surname: String? = null, streetAddress: String? = null, extendedAddress: String? = null, line3: String? = null, locality: String? = null, region: String? = null, postalCode: String? = null, countryCodeAlpha2: String? = null, phoneNumber: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Optional. 2 letter country code.

Link copied to clipboard

Optional. Line 2 of the Address (eg. suite, apt #, etc.).

Link copied to clipboard

Optional. Given name associated with the address.

Link copied to clipboard

Optional. Line 3 of the Address (eg. suite, apt #, etc.).

Link copied to clipboard

Optional. City name.

Link copied to clipboard

Optional. The phone number associated with the address. Only numbers. Remove dashes, parentheses and other characters.

Link copied to clipboard

Optional. Zip code or equivalent is usually required for countries that have them. For a list of countries that do not have postal codes please refer to http://en.wikipedia.org/wiki/Postal_code

Link copied to clipboard

Optional. Either a two-letter state code (for the US), or an ISO-3166-2 country subdivision code of up to three letters.

Link copied to clipboard

Optional. Line 1 of theAddress (eg. number, street, etc).

Link copied to clipboard

Optional. Surname associated with the address.

Functions

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