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

lib/polar_express/schemas/refresh_token_request.ex

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