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 unique_aggregation.ex
Raw

lib/polar_express/schemas/unique_aggregation.ex

# File generated from our OpenAPI spec
defmodule PolarExpress.Schemas.UniqueAggregation do
@moduledoc """
UniqueAggregation
"""
@typedoc """
* `func`
* `property`
"""
@type t :: %__MODULE__{
func: String.t() | nil,
property: String.t() | nil
}
defstruct [:func, :property]
@schema_name "UniqueAggregation"
def schema_name, do: @schema_name
end