# `Stripe.Params.PaymentIntentCancelParams`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/payment_intent_cancel_params.ex#L2)

Parameters for payment intent cancel.

# `t`

```elixir
@type t() :: %Stripe.Params.PaymentIntentCancelParams{
  cancellation_reason: String.t() | nil,
  expand: [String.t()] | nil
}
```

* `cancellation_reason` - Reason for canceling this PaymentIntent. Possible values are: `duplicate`, `fraudulent`, `requested_by_customer`, or `abandoned` Possible values: `abandoned`, `duplicate`, `fraudulent`, `requested_by_customer`. Max length: 5000.
* `expand` - Specifies which fields in the response should be expanded.

---

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