Class: Increase::Models::BookkeepingBalanceLookup

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/increase/models/bookkeeping_balance_lookup.rb

Instance Attribute Summary collapse

Method Summary

Methods inherited from BaseModel

#[], #inspect, #to_h, #to_s

Instance Attribute Details

#balanceInteger

The Bookkeeping Account's current balance, representing the sum of all Bookkeeping Entries on the Bookkeeping Account.

Returns:

  • (Integer)


9
# File 'lib/increase/models/bookkeeping_balance_lookup.rb', line 9

required :balance, Integer

#bookkeeping_account_idString

The identifier for the account for which the balance was queried.

Returns:

  • (String)


14
# File 'lib/increase/models/bookkeeping_balance_lookup.rb', line 14

required :bookkeeping_account_id, String

#typeSymbol

A constant representing the object's type. For this resource it will always be bookkeeping_balance_lookup.

Returns:

  • (Symbol)


19
# File 'lib/increase/models/bookkeeping_balance_lookup.rb', line 19

required :type, Increase::Enum.new(:bookkeeping_balance_lookup)