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
Current section
Files
lib/polar_express/schemas/aggregation_function.ex
# File generated from our OpenAPI spec
defmodule PolarExpress.Schemas.AggregationFunction do
@moduledoc "AggregationFunction enum. Possible values: `count`, `sum`, `max`, `min`, `avg`, `unique`."
@type t :: String.t()
@values [
"count",
"sum",
"max",
"min",
"avg",
"unique"
]
@doc "List of valid enum values."
def values, do: @values
@schema_name "AggregationFunction"
def schema_name, do: @schema_name
end