POCard

constructor(id: String, @Json(name = "project_id") projectId: String, scheme: String?, @Json(name = "co_scheme") coScheme: String?, @Json(name = "preferred_scheme") preferredScheme: String?, type: String?, @Json(name = "bank_name") bankName: String?, brand: String?, category: String?, iin: String?, @Json(name = "last_4_digits") last4Digits: String?, fingerprint: String?, @Json(name = "exp_month") expMonth: Int?, @Json(name = "exp_year") expYear: Int?, @Json(name = "cvc_check") cvcCheck: String?, @Json(name = "avs_check") avsCheck: String?, @Json(name = "token_type") tokenType: String?, name: String?, address1: String?, address2: String?, city: String?, state: String?, @Json(name = "country_code") countryCode: String?, zip: String?, @Json(name = "expires_soon") expiresSoon: Boolean, metadata: Map<String, String>?, sandbox: Boolean, @Json(name = "created_at") createdAt: Date, @Json(name = "updated_at") updatedAt: Date, @Json(name = "update_type") updateType: String?)

Parameters

id

Value that uniquely identifies the card.

projectId

Project that the card belongs to.

scheme

Scheme of the card.

coScheme

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

preferredScheme

Preferred scheme defined by the Customer.

type

Card type.

bankName

Name of the card’s issuing bank.

brand

Brand of the card.

category

Card category.

iin

Issuer Identification Number. Corresponds to the first 6 or 8 digits of the main card number.

last4Digits

Last 4 digits of the card.

fingerprint

Hash value that remains the same for this card even if it is tokenized several times.

expMonth

Month of the expiration date.

expYear

Year of the expiration date.

cvcCheck

CVC check status.

avsCheck

AVS check status.

tokenType

Contains the name of a third party tokenization method.

name

Cardholder’s name.

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.

countryCode

Country code of cardholder’s address.

zip

ZIP code of cardholder’s address.

expiresSoon

Set to true if the card will expire soon, otherwise false.

metadata

Metadata related to the card, in the form of key-value pairs.

sandbox

Denotes whether or not this card was created in the sandbox testing environment.

createdAt

Date and time when this card was created.

updatedAt

Date and time when this card was updated.

updateType

Type of card update.