View Source Stripe.CustomerBalanceTransaction (Striped v0.5.0) (generated)
Each customer has a balance
value,
which denotes a debit or credit that's automatically applied to their next invoice upon finalization.
You may modify the value directly by using the update customer API,
or by creating a Customer Balance Transaction, which increments or decrements the customer's balance
by the specified amount
.
Related guide: Customer Balance to learn more.
Link to this section Summary
Functions
Creates an immutable transaction that updates the customer’s credit balance.
Returns a list of transactions that updated the customer’s balances.
Retrieves a specific customer balance transaction that updated the customer’s balances.
Most credit balance transaction fields are immutable, but you may update its description
and metadata
.
Link to this section Types
@type t() :: %Stripe.CustomerBalanceTransaction{ amount: integer(), created: integer(), credit_note: (binary() | Stripe.CreditNote.t()) | nil, currency: binary(), customer: binary() | Stripe.Customer.t(), description: binary() | nil, ending_balance: integer(), id: binary(), invoice: (binary() | Stripe.Invoice.t()) | nil, livemode: boolean(), metadata: term() | nil, object: binary(), type: binary() }
The customer_balance_transaction
type.
amount
The amount of the transaction. A negative value is a credit for the customer's balance, and a positive value is a debit to the customer'sbalance
.created
Time at which the object was created. Measured in seconds since the Unix epoch.credit_note
The ID of the credit note (if any) related to the transaction.currency
Three-letter ISO currency code, in lowercase. Must be a supported currency.customer
The ID of the customer the transaction belongs to.description
An arbitrary string attached to the object. Often useful for displaying to users.ending_balance
The customer'sbalance
after the transaction was applied. A negative value decreases the amount due on the customer's next invoice. A positive value increases the amount due on the customer's next invoice.id
Unique identifier for the object.invoice
The ID of the invoice (if any) related to the transaction.livemode
Has the valuetrue
if the object exists in live mode or the valuefalse
if the object exists in test mode.metadata
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.object
String representing the object's type. Objects of the same type share the same value.type
Transaction type:adjustment
,applied_to_invoice
,credit_note
,initial
,invoice_too_large
,invoice_too_small
,unspent_receiver_credit
, orunapplied_from_invoice
. See the Customer Balance page to learn more about transaction types.
Link to this section Functions
@spec create( client :: Stripe.t(), customer :: binary(), params :: %{ optional(:amount) => integer(), optional(:currency) => binary(), optional(:description) => binary(), optional(:expand) => [binary()], optional(:metadata) => %{optional(binary()) => binary()} | binary() }, opts :: Keyword.t() ) :: {:ok, t()} | {:error, Stripe.ApiErrors.t()} | {:error, term()}
Creates an immutable transaction that updates the customer’s credit balance.
Details
- Method:
post
- Path:
/v1/customers/{customer}/balance_transactions
@spec list( client :: Stripe.t(), 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 updated the customer’s balances.
Details
- Method:
get
- Path:
/v1/customers/{customer}/balance_transactions
retrieve(client, customer, transaction, params \\ %{}, opts \\ [])
View Source@spec retrieve( client :: Stripe.t(), customer :: binary(), transaction :: binary(), params :: %{optional(:expand) => [binary()]}, opts :: Keyword.t() ) :: {:ok, t()} | {:error, Stripe.ApiErrors.t()} | {:error, term()}
Retrieves a specific customer balance transaction that updated the customer’s balances.
Details
- Method:
get
- Path:
/v1/customers/{customer}/balance_transactions/{transaction}
@spec update( client :: Stripe.t(), customer :: binary(), transaction :: binary(), params :: %{ optional(:description) => binary(), optional(:expand) => [binary()], optional(:metadata) => %{optional(binary()) => binary()} | binary() }, opts :: Keyword.t() ) :: {:ok, t()} | {:error, Stripe.ApiErrors.t()} | {:error, term()}
Most credit balance transaction fields are immutable, but you may update its description
and metadata
.
Details
- Method:
post
- Path:
/v1/customers/{customer}/balance_transactions/{transaction}