Subscription-PaymentMethodCard
Details about the card used as payment method at the time of the transaction.
brandstring
Card brand.
Enum Value | Description |
---|---|
visa | Visa |
mastercard | Mastercard |
diners | Diners Club |
amex | American Express |
jcb | JCB |
unionpay | UnionPay |
unknown | Unknown |
Possible values: [visa
, mastercard
, diners
, amex
, jcb
, unionpay
, unknown
]
Example:
visa
typestring
Card type debit
or credit
.
Enum Value | Description |
---|---|
debit | Debit |
credit | Credit |
Possible values: [debit
, credit
]
Example:
credit
threeDSecureboolean
Wether this transaction used 3D Secure authentication.
Example:
false
threeDSecureVersionstring
The protocol version of the 3DS challenge.
Example:
2.1.0
expirationint64
Time at which the card will expire. Measured in seconds since the Unix epoch.
Example:
2048544000
last4string
The last four digits of the card.
Example:
0004
Subscription-PaymentMethodCard
{
"country": "ES",
"brand": "visa",
"type": "credit",
"threeDSecure": false,
"threeDSecureVersion": "2.1.0",
"expiration": 2048544000,
"last4": "0004"
}