Packages
Complete Stripe SDK for Elixir with parity to the official Ruby SDK. V1+V2 coverage (193 services, 320 resource structs, 525 documented params). Per-event modules, Finch HTTP/2, RustyJSON, automatic retries, OAuth, webhooks, telemetry, per-client config, streaming pagination.
Current section
Files
Jump to
Current section
Files
lib/stripe/params/billing/alert_create_params.ex
# File generated from our OpenAPI spec
defmodule Stripe.Params.Billing.AlertCreateParams do
@moduledoc "Parameters for alert create."
@typedoc """
* `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.
"""
@type t :: %__MODULE__{}
defstruct [:alert_type, :expand, :title, :usage_threshold]
end