POContact

@JsonClass(generateAdapter = true)
data class POContact(val address1: String? = "", val address2: String? = "", val city: String? = "", val state: String? = "", val zip: String? = "", @Json(name = "country_code") val countryCode: String? = "") : Parcelable

Cardholder information.

Parameters

address1

First line of cardholder’s address.

address2

Second line of cardholder’s address.

city

City of cardholder’s address.

state

State or county of cardholder’s address.

zip

ZIP code of cardholder’s address.

countryCode

Country code of cardholder’s address.

Constructors

Link copied to clipboard
constructor(address1: String? = "", address2: String? = "", city: String? = "", state: String? = "", zip: String? = "", @Json(name = "country_code") countryCode: String? = "")

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val city: String?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val zip: String?

Functions

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