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/webhook_refund_updated_payload.ex
# File generated from our OpenAPI spec
defmodule PolarExpress.Schemas.WebhookRefundUpdatedPayload do
@moduledoc """
WebhookRefundUpdatedPayload
Sent when a refund is updated.
**Discord & Slack support:** Full
"""
@typedoc """
* `data`
* `timestamp` - Format: date-time.
* `type`
"""
@type t :: %__MODULE__{}
defstruct [:data, :timestamp, :type]
@schema_name "WebhookRefundUpdatedPayload"
def schema_name, do: @schema_name
def __inner_types__ do
%{
"data" => PolarExpress.Schemas.Refund
}
end
def __date_fields__, do: [:timestamp]
end