# `Stripe.Resources.PaymentAttemptRecord.PaymentMethodDetails.RevolutPay.Funding.Card`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/payment_attempt_record.ex#L1683)

Nested struct within the parent resource.

# `t`

```elixir
@type t() ::
  %Stripe.Resources.PaymentAttemptRecord.PaymentMethodDetails.RevolutPay.Funding.Card{
    brand: String.t() | nil,
    country: String.t() | nil,
    exp_month: integer() | nil,
    exp_year: integer() | nil,
    funding: String.t() | nil,
    last4: String.t() | nil
  }
```

* `brand` - Card brand. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `eftpos_au`, `jcb`, `link`, `mastercard`, `unionpay`, `visa` or `unknown`. Max length: 5000. Nullable.
* `country` - 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. Max length: 5000. Nullable.
* `exp_month` - Two-digit number representing the card's expiration month. Nullable.
* `exp_year` - Four-digit number representing the card's expiration year. Nullable.
* `funding` - Card funding type. Can be `credit`, `debit`, `prepaid`, or `unknown`. Max length: 5000. Nullable.
* `last4` - The last four digits of the card. Max length: 5000. Nullable.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
