# payment\_method\_card

From **Stripe API**.

- Type: `object`

## Properties

### `brand`

- Required: true
- Type: `string`
- maxLength: `5000`

Card brand. Can be `amex`, `diners`, `discover`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.

### `checks`

- Required: false
- Nullable: true

Checks on Card address and CVC if provided.

### `country`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.

### `exp_month`

- Required: true
- Type: `integer`

Two-digit number representing the card's expiration month.

### `exp_year`

- Required: true
- Type: `integer`

Four-digit number representing the card's expiration year.

### `fingerprint`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

Uniquely identifies this particular card number. You can use this attribute to check whether two customers who’ve signed up with you are using the same card number, for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.

*Starting May 1, 2021, card fingerprint in India for Connect will change to allow two fingerprints for the same card --- one for India and one for the rest of the world.*

### `funding`

- Required: true
- Type: `string`
- maxLength: `5000`

Card funding type. Can be `credit`, `debit`, `prepaid`, or `unknown`.

### `generated_from`

- Required: false
- Nullable: true

Details of the original PaymentMethod that created this object.

### `last4`

- Required: true
- Type: `string`
- maxLength: `5000`

The last four digits of the card.

### `networks`

- Required: false
- Nullable: true

Contains information about card networks that can be used to process the payment.

### `three_d_secure_usage`

- Required: false
- Nullable: true

Contains details on how this Card maybe be used for 3D Secure authentication.

### `wallet`

- Required: false
- Nullable: true

If this Card is part of a card wallet, this contains the details of the card wallet.

## JSON Schema

```json
{"properties":{"brand":{"description":"Card brand. Can be `amex`, `diners`, `discover`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.","maxLength":5000,"type":"string"},"checks":{"anyOf":[{"$ref":"#/components/schemas/payment_method_card_checks"}],"description":"Checks on Card address and CVC if provided.","nullable":true},"country":{"description":"Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.","maxLength":5000,"nullable":true,"type":"string"},"exp_month":{"description":"Two-digit number representing the card's expiration month.","type":"integer"},"exp_year":{"description":"Four-digit number representing the card's expiration year.","type":"integer"},"fingerprint":{"description":"Uniquely identifies this particular card number. You can use this attribute to check whether two customers who’ve signed up with you are using the same card number, for example. For payment methods that tokenize card information (Apple Pay, Google Pay), the tokenized number might be provided instead of the underlying card number.\n\n*Starting May 1, 2021, card fingerprint in India for Connect will change to allow two fingerprints for the same card --- one for India and one for the rest of the world.*","maxLength":5000,"nullable":true,"type":"string"},"funding":{"description":"Card funding type. Can be `credit`, `debit`, `prepaid`, or `unknown`.","maxLength":5000,"type":"string"},"generated_from":{"anyOf":[{"$ref":"#/components/schemas/payment_method_card_generated_card"}],"description":"Details of the original PaymentMethod that created this object.","nullable":true},"last4":{"description":"The last four digits of the card.","maxLength":5000,"type":"string"},"networks":{"anyOf":[{"$ref":"#/components/schemas/networks"}],"description":"Contains information about card networks that can be used to process the payment.","nullable":true},"three_d_secure_usage":{"anyOf":[{"$ref":"#/components/schemas/three_d_secure_usage"}],"description":"Contains details on how this Card maybe be used for 3D Secure authentication.","nullable":true},"wallet":{"anyOf":[{"$ref":"#/components/schemas/payment_method_card_wallet"}],"description":"If this Card is part of a card wallet, this contains the details of the card wallet.","nullable":true}},"required":["brand","exp_month","exp_year","funding","last4"],"title":"payment_method_card","type":"object","x-expandableFields":["checks","generated_from","networks","three_d_secure_usage","wallet"]}
```
