stripe-ruby/lib/stripe/resources/customer_cash_balance_transaction.rb
helenye-stripe ce8d7ca4cc
Add methods for dynamically referenced constants (#1327)
* Update dynamic constant references

* Manual additionsg

* Fix lint

* Use const_Get

* Remove puts
2024-02-09 17:15:39 -08:00

16 lines
642 B
Ruby

# File generated from our OpenAPI spec
# frozen_string_literal: true
module Stripe
# 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.
class CustomerCashBalanceTransaction < APIResource
OBJECT_NAME = "customer_cash_balance_transaction"
def self.object_name
"customer_cash_balance_transaction"
end
end
end