POCardIssuerInformation

@JsonClass(generateAdapter = true)
data class POCardIssuerInformation(val scheme: String, @Json(name = "co_scheme") val coScheme: String? = null, val type: String? = null, @Json(name = "bank_name") val bankName: String? = null, val brand: String? = null, val category: String? = null, val country: String? = null) : Parcelable

Holds information about card issuing institution that issued the card to the card holder.

Parameters

scheme

Scheme of the card.

coScheme

Co-scheme of the card, such as Carte Bancaire.

type

Card type.

bankName

Name of the card’s issuing bank.

brand

Brand of the card.

category

Card category.

country

Country of origin.

Constructors

Link copied to clipboard
constructor(scheme: String, @Json(name = "co_scheme") coScheme: String? = null, type: String? = null, @Json(name = "bank_name") bankName: String? = null, brand: String? = null, category: String? = null, country: String? = null)

Properties

Link copied to clipboard
val bankName: String? = null
Link copied to clipboard
val brand: String? = null
Link copied to clipboard
val category: String? = null
Link copied to clipboard
val coScheme: String? = null
Link copied to clipboard
val country: String? = null
Link copied to clipboard
Link copied to clipboard
val type: String? = null

Functions

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