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/customer_payment_method_create.ex
# File generated from our OpenAPI spec
defmodule PolarExpress.Schemas.CustomerPaymentMethodCreate do
@moduledoc """
CustomerPaymentMethodCreate
"""
@typedoc """
* `confirmation_token_id`
* `return_url`
* `set_default`
"""
@type t :: %__MODULE__{
confirmation_token_id: String.t() | nil,
return_url: String.t() | nil,
set_default: boolean() | nil
}
defstruct [:confirmation_token_id, :return_url, :set_default]
@schema_name "CustomerPaymentMethodCreate"
def schema_name, do: @schema_name
end