Class: Stripe::CashBalance
- Inherits:
-
APIResource
- Object
- StripeObject
- APIResource
- Stripe::CashBalance
- Defined in:
- lib/stripe/resources/cash_balance.rb
Overview
A customer’s ‘Cash balance` represents real funds. Customers can add funds to their cash balance by sending a bank transfer. These funds can be used for payment and can eventually be paid out to your bank account.
Constant Summary collapse
- OBJECT_NAME =
"cash_balance"
Constants inherited from StripeObject
StripeObject::RESERVED_FIELD_NAMES
Instance Attribute Summary
Attributes inherited from APIResource
Attributes inherited from StripeObject
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from APIResource
class_name, custom_method, #refresh, #request_stripe_object, resource_url, save_nested_resource
Methods included from APIOperations::Request
Methods inherited from StripeObject
#==, #[], #[]=, additive_object_param, additive_object_param?, #as_json, construct_from, #deleted?, #dirty!, #each, #eql?, #hash, #initialize, #inspect, #keys, #marshal_dump, #marshal_load, protected_fields, #serialize_params, #to_hash, #to_json, #to_s, #update_attributes, #values
Constructor Details
This class inherits a constructor from Stripe::StripeObject
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Stripe::StripeObject
Class Method Details
.object_name ⇒ Object
8 9 10 |
# File 'lib/stripe/resources/cash_balance.rb', line 8 def self.object_name "cash_balance" end |
.retrieve(_id, _opts = {}) ⇒ Object
20 21 22 23 24 |
# File 'lib/stripe/resources/cash_balance.rb', line 20 def self.retrieve(_id, _opts = {}) raise NotImplementedError, "Customer Cash Balance cannot be retrieved without a customer ID. " \ "Retrieve a Customer Cash Balance using `Customer.retrieve_cash_balance('cus_123')`" end |
Instance Method Details
#resource_url ⇒ Object
12 13 14 15 16 17 18 |
# File 'lib/stripe/resources/cash_balance.rb', line 12 def resource_url if !respond_to?(:customer) || customer.nil? raise NotImplementedError, "Customer Cash Balance cannot be accessed without a customer ID." end "#{Customer.resource_url}/#{CGI.escape(customer)}/cash_balance" end |