Packages

🚂 Complete Polar SDK for Elixir with 1:1 feature parity to the official JavaScript SDK. Full API coverage. Fully typed per-event modules. Modern stack: Finch HTTP/2, RustyJSON, connection pooling, automatic retries, OAuth, webhooks, telemetry, explicit client options, streaming pagination.

Current section

Files

Jump to
polar_express lib polar_express schemas webhook_format.ex
Raw

lib/polar_express/schemas/webhook_format.ex

# File generated from our OpenAPI spec
defmodule PolarExpress.Schemas.WebhookFormat do
@moduledoc "WebhookFormat enum. Possible values: `raw`, `discord`, `slack`."
@type t :: String.t()
@values [
"raw",
"discord",
"slack"
]
@doc "List of valid enum values."
def values, do: @values
@schema_name "WebhookFormat"
def schema_name, do: @schema_name
end