Packages
Complete Stripe SDK for Elixir with parity to the official Ruby SDK. V1+V2 coverage (193 services, 320 resource structs, 525 documented params). Per-event modules, Finch HTTP/2, RustyJSON, automatic retries, OAuth, webhooks, telemetry, per-client config, streaming pagination.
Current section
Files
Jump to
Current section
Files
lib/stripe/resources/refunded_from_payment.ex
# File generated from our OpenAPI spec
defmodule Stripe.Resources.RefundedFromPayment do
@moduledoc """
CustomerBalanceResourceCashBalanceTransactionResourceRefundedFromPaymentTransaction
"""
@typedoc """
* `refund` - The [Refund](https://docs.stripe.com/api/refunds/object) that moved these funds into the customer's cash balance. Expandable.
"""
@type t :: %__MODULE__{
refund: String.t() | Stripe.Resources.Refund.t()
}
defstruct [:refund]
@object_name "customer_balance_resource_cash_balance_transaction_resource_refunded_from_payment_transaction"
def object_name, do: @object_name
def expandable_fields, do: ["refund"]
end