# `Stripe.Resources.CreditNote.Refunds`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/credit_note.ex#L189)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.CreditNote.Refunds{
  amount_refunded: integer() | nil,
  payment_record_refund:
    Stripe.Resources.CreditNote.Refunds.PaymentRecordRefund.t() | nil,
  refund: String.t() | Stripe.Resources.Refund.t() | nil,
  type: String.t() | nil
}
```

* `amount_refunded` - Amount of the refund that applies to this credit note, in cents (or local equivalent).
* `payment_record_refund` - The PaymentRecord refund details associated with this credit note refund. Nullable.
* `refund` - ID of the refund.
* `type` - Type of the refund, one of `refund` or `payment_record_refund`. Possible values: `payment_record_refund`, `refund`. Nullable.

---

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