# `PolarExpress.Schemas.RefundDispute`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/schemas/refund_dispute.ex#L2)

RefundDispute

Dispute associated with a refund,
in case we prevented a dispute by issuing a refund.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.RefundDispute{
  amount: integer() | nil,
  closed: boolean() | nil,
  created_at: DateTime.t() | nil,
  currency: String.t() | nil,
  id: String.t() | nil,
  modified_at: DateTime.t() | nil,
  order_id: String.t() | nil,
  payment_id: String.t() | nil,
  resolved: boolean() | nil,
  status: PolarExpress.Schemas.DisputeStatus.t() | nil,
  tax_amount: integer() | nil
}
```

* `amount` - Amount in cents disputed.
* `closed` - Whether the dispute is closed (prevented, won, or lost).
* `created_at` - Creation timestamp of the object. Format: date-time.
* `currency` - Currency code of the dispute.
* `id` - The ID of the object. Format: uuid4.
* `modified_at` - Last modification timestamp of the object. Nullable.
* `order_id` - The ID of the order associated with the dispute. Format: uuid4.
* `payment_id` - The ID of the payment associated with the dispute. Format: uuid4.
* `resolved` - Whether the dispute has been resolved (won or lost).
* `status` - Status of the dispute. `prevented` means we issued a refund before the dispute was escalated, avoiding any fees.
* `tax_amount` - Tax amount in cents disputed.

# `schema_name`

---

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