Class: Increase::Models::BookkeepingEntry
- Defined in:
- lib/increase/models/bookkeeping_entry.rb
Instance Attribute Summary collapse
-
#account_id ⇒ String
The identifier for the Account the Entry belongs to.
-
#amount ⇒ Integer
The Entry amount in the minor unit of its currency.
-
#created_at ⇒ String
When the entry set was created.
-
#entry_set_id ⇒ String
The identifier for the Account the Entry belongs to.
-
#id ⇒ String
The entry identifier.
-
#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 the Entry belongs to.
14 |
# File 'lib/increase/models/bookkeeping_entry.rb', line 14 required :account_id, String |
#amount ⇒ Integer
The Entry amount in the minor unit of its currency. For dollars, for example, this is cents.
19 |
# File 'lib/increase/models/bookkeeping_entry.rb', line 19 required :amount, Integer |
#created_at ⇒ String
When the entry set was created.
24 |
# File 'lib/increase/models/bookkeeping_entry.rb', line 24 required :created_at, String |
#entry_set_id ⇒ String
The identifier for the Account the Entry belongs to.
29 |
# File 'lib/increase/models/bookkeeping_entry.rb', line 29 required :entry_set_id, String |
#id ⇒ String
The entry identifier.
9 |
# File 'lib/increase/models/bookkeeping_entry.rb', line 9 required :id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be bookkeeping_entry
.
34 |
# File 'lib/increase/models/bookkeeping_entry.rb', line 34 required :type, Increase::Enum.new(:bookkeeping_entry) |