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

Parameters for alert create.

# `t`

```elixir
@type t() :: %Stripe.Params.Billing.AlertCreateParams{
  alert_type: String.t(),
  expand: [String.t()] | nil,
  title: String.t(),
  usage_threshold:
    Stripe.Params.Billing.AlertCreateParams.UsageThreshold.t() | nil
}
```

* `alert_type` - The type of alert to create. Possible values: `usage_threshold`.
* `expand` - Specifies which fields in the response should be expanded.
* `title` - The title of the alert. Max length: 256.
* `usage_threshold` - The configuration of the usage threshold.

---

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