# Subscription-PaymentMethodCard

Details about the card used as payment method at the time of the transaction.

**country**Country

Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).

**Example:<!-- -->&#x20;**`ES`

**brand**string

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:<!-- -->&#x20;**`visa`

**type**string

Card type `debit` or `credit`.

| Enum Value | Description |
| ---------- | ----------- |
| debit      | Debit       |
| credit     | Credit      |

**Possible values:** \[`debit`, `credit`]

**Example:<!-- -->&#x20;**`credit`

**threeDSecure**boolean

Wether this transaction used 3D Secure authentication.

**Example:<!-- -->&#x20;**`false`

**threeDSecureVersion**string

The protocol version of the 3DS challenge.

**Example:<!-- -->&#x20;**`2.1.0`

**expiration**int64

Time at which the card will expire. Measured in seconds since the Unix epoch.

**Example:<!-- -->&#x20;**`2048544000`

**last4**string

The last four digits of the card.

**Example:<!-- -->&#x20;**`0004`

**fingerprint**string

Unique identifier for the card number. Used to detect duplicate payment methods across customers. Not present for tokenized cards.

**Example:<!-- -->&#x20;**`7f2afde1566286c5fb126bb7e79bef549755cce6033dc429013c46d1365ff0e9`

Subscription-PaymentMethodCard

```
{

  "country": "ES",

  "brand": "visa",

  "type": "credit",

  "threeDSecure": false,

  "threeDSecureVersion": "2.1.0",

  "expiration": 2048544000,

  "last4": "0004",

  "fingerprint": "7f2afde1566286c5fb126bb7e79bef549755cce6033dc429013c46d1365ff0e9"

}
```
