Class: Increase::Models::BalanceLookup
- Defined in:
- lib/increase/models/balance_lookup.rb
Instance Attribute Summary collapse
-
#account_id ⇒ String
The identifier for the account for which the balance was queried.
-
#available_balance ⇒ Integer
The Account's available balance, representing the current balance less any open Pending Transactions on the Account.
-
#current_balance ⇒ Integer
The Account's current balance, representing the sum of all posted Transactions on the Account.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#account_id ⇒ String
The identifier for the account for which the balance was queried.
9 |
# File 'lib/increase/models/balance_lookup.rb', line 9 required :account_id, String |
#available_balance ⇒ Integer
The Account's available balance, representing the current balance less any open Pending Transactions on the Account.
14 |
# File 'lib/increase/models/balance_lookup.rb', line 14 required :available_balance, Integer |
#current_balance ⇒ Integer
The Account's current balance, representing the sum of all posted Transactions on the Account.
19 |
# File 'lib/increase/models/balance_lookup.rb', line 19 required :current_balance, Integer |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be balance_lookup
.
24 |
# File 'lib/increase/models/balance_lookup.rb', line 24 required :type, Increase::Enum.new(:balance_lookup) |