Class: Stripe::CashBalance

Inherits:
APIResource show all
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

#save_with_parent

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

included

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

.retrieve(_id, _opts = {}) ⇒ Object

Raises:

  • (NotImplementedError)


17
18
19
20
21
# File 'lib/stripe/resources/cash_balance.rb', line 17

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_urlObject



9
10
11
12
13
14
15
# File 'lib/stripe/resources/cash_balance.rb', line 9

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