Sha256: 4437d317ccf7e6fedb8393372328428b7f3d08c67ff6128511863ac99e2aa687
Contents?: true
Size: 1.09 KB
Versions: 49
Compression:
Stored size: 1.09 KB
Contents
# File generated from our OpenAPI spec # frozen_string_literal: true module Stripe # Balance transactions represent funds moving through your Stripe account. # Stripe creates them for every type of transaction that enters or leaves your Stripe account balance. # # Related guide: [Balance transaction types](https://stripe.com/docs/reports/balance-transaction-types) class BalanceTransaction < APIResource extend Stripe::APIOperations::List OBJECT_NAME = "balance_transaction" def self.object_name "balance_transaction" end # Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and so forth). The transactions are returned in sorted order, with the most recent transactions appearing first. # # Note that this endpoint was previously called “Balance history” and used the path /v1/balance/history. def self.list(filters = {}, opts = {}) request_stripe_object( method: :get, path: "/v1/balance_transactions", params: filters, opts: opts ) end end end
Version data entries
49 entries across 49 versions & 1 rubygems