View Source Stripe.CustomerCashBalanceTransaction (stripity_stripe v3.2.0)
Customers with certain payments enabled have a cash balance, representing funds that were paid by the customer to a merchant, but have not yet been allocated to a payment. Cash Balance Transactions represent when funds are moved into or out of this balance. This includes funding by the customer, allocation to payments, and refunds to the customer.
Summary
Functions
Returns a list of transactions that modified the customer’s cash balance.
Retrieves a specific cash balance transaction, which updated the customer’s cash balance.
Types
@type t() :: %Stripe.CustomerCashBalanceTransaction{ adjusted_for_overdraft: term(), applied_to_payment: term(), created: integer(), currency: binary(), customer: binary() | Stripe.Customer.t(), ending_balance: integer(), funded: term(), id: binary(), livemode: boolean(), net_amount: integer(), object: binary(), refunded_from_payment: term(), transferred_to_balance: term(), type: binary(), unapplied_from_payment: term() }
The customer_cash_balance_transaction type.
adjusted_for_overdraftapplied_to_paymentcreatedTime at which the object was created. Measured in seconds since the Unix epoch.currencyThree-letter ISO currency code, in lowercase. Must be a supported currency.customerThe customer whose available cash balance changed as a result of this transaction.ending_balanceThe total available cash balance for the specified currency after this transaction was applied. Represented in the smallest currency unit.fundedidUnique identifier for the object.livemodeHas the valuetrueif the object exists in live mode or the valuefalseif the object exists in test mode.net_amountThe amount by which the cash balance changed, represented in the smallest currency unit. A positive value represents funds being added to the cash balance, a negative value represents funds being removed from the cash balance.objectString representing the object's type. Objects of the same type share the same value.refunded_from_paymenttransferred_to_balancetypeThe type of the cash balance transaction. New types may be added in future. See Customer Balance to learn more about these types.unapplied_from_payment
Functions
@spec list( customer :: binary(), params :: %{ optional(:ending_before) => binary(), optional(:expand) => [binary()], optional(:limit) => integer(), optional(:starting_after) => binary() }, opts :: Keyword.t() ) :: {:ok, Stripe.List.t(t())} | {:error, Stripe.ApiErrors.t()} | {:error, term()}
Returns a list of transactions that modified the customer’s cash balance.
Details
- Method: 
get - Path: 
/v1/customers/{customer}/cash_balance_transactions 
@spec retrieve( customer :: binary(), transaction :: binary(), params :: %{optional(:expand) => [binary()]}, opts :: Keyword.t() ) :: {:ok, t()} | {:error, Stripe.ApiErrors.t()} | {:error, term()}
Retrieves a specific cash balance transaction, which updated the customer’s cash balance.
Details
- Method: 
get - Path: 
/v1/customers/{customer}/cash_balance_transactions/{transaction}