Class: Increase::Models::BookkeepingBalanceLookup
- Defined in:
- lib/increase/models/bookkeeping_balance_lookup.rb
Instance Attribute Summary collapse
-
#balance ⇒ Integer
The Bookkeeping Account's current balance, representing the sum of all Bookkeeping Entries on the Bookkeeping Account.
-
#bookkeeping_account_id ⇒ String
The identifier for the account for which the balance was queried.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#balance ⇒ Integer
The Bookkeeping Account's current balance, representing the sum of all Bookkeeping Entries on the Bookkeeping Account.
9 |
# File 'lib/increase/models/bookkeeping_balance_lookup.rb', line 9 required :balance, Integer |
#bookkeeping_account_id ⇒ String
The identifier for the account for which the balance was queried.
14 |
# File 'lib/increase/models/bookkeeping_balance_lookup.rb', line 14 required :bookkeeping_account_id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be bookkeeping_balance_lookup
.
19 |
# File 'lib/increase/models/bookkeeping_balance_lookup.rb', line 19 required :type, Increase::Enum.new(:bookkeeping_balance_lookup) |