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.

Defined Under Namespace

Classes: Settings

Constant Summary collapse

OBJECT_NAME =
"cash_balance"

Constants inherited from StripeObject

StripeObject::RESERVED_FIELD_NAMES

Instance Attribute Summary collapse

Attributes inherited from APIResource

#save_with_parent

Attributes inherited from StripeObject

#last_response

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

#==, #[], #[]=, #_get_inner_class_type, 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

Instance Attribute Details

#availableObject (readonly)

A hash of all cash balances available to this customer. You cannot delete a customer with any cash balances, even if the balance is 0. Amounts are represented in the [smallest currency unit](stripe.com/docs/currencies#zero-decimal).



27
28
29
# File 'lib/stripe/resources/cash_balance.rb', line 27

def available
  @available
end

#customerObject (readonly)

The ID of the customer whose cash balance this object represents.



29
30
31
# File 'lib/stripe/resources/cash_balance.rb', line 29

def customer
  @customer
end

#livemodeObject (readonly)

Has the value ‘true` if the object exists in live mode or the value `false` if the object exists in test mode.



31
32
33
# File 'lib/stripe/resources/cash_balance.rb', line 31

def livemode
  @livemode
end

#objectObject (readonly)

String representing the object’s type. Objects of the same type share the same value.



33
34
35
# File 'lib/stripe/resources/cash_balance.rb', line 33

def object
  @object
end

#settingsObject (readonly)

Attribute for field settings



35
36
37
# File 'lib/stripe/resources/cash_balance.rb', line 35

def settings
  @settings
end

Class Method Details

.field_remappingsObject



55
56
57
# File 'lib/stripe/resources/cash_balance.rb', line 55

def self.field_remappings
  @field_remappings = {}
end

.inner_class_typesObject



51
52
53
# File 'lib/stripe/resources/cash_balance.rb', line 51

def self.inner_class_types
  @inner_class_types = { settings: Settings }
end

.object_nameObject



8
9
10
# File 'lib/stripe/resources/cash_balance.rb', line 8

def self.object_name
  "cash_balance"
end

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

Raises:

  • (NotImplementedError)


45
46
47
48
49
# File 'lib/stripe/resources/cash_balance.rb', line 45

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



37
38
39
40
41
42
43
# File 'lib/stripe/resources/cash_balance.rb', line 37

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