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

lib/polar_express/schemas/validation_error.ex

# File generated from our OpenAPI spec
defmodule PolarExpress.Schemas.ValidationError do
@moduledoc """
ValidationError
"""
@typedoc """
* `ctx`
* `input`
* `loc`
* `msg`
* `type`
"""
@type t :: %__MODULE__{
ctx: map() | nil,
input: term(),
loc: [String.t() | integer()] | nil,
msg: String.t() | nil,
type: String.t() | nil
}
defstruct [:ctx, :input, :loc, :msg, :type]
@schema_name "ValidationError"
def schema_name, do: @schema_name
end