Class: Increase::Models::BookkeepingEntrySet
- Defined in:
- lib/increase/models/bookkeeping_entry_set.rb
Defined Under Namespace
Classes: Entry
Instance Attribute Summary collapse
-
#created_at ⇒ String
When the entry set was created.
-
#date ⇒ String
The timestamp of the entry set.
-
#entries ⇒ Array<Increase::Models::BookkeepingEntrySet::Entry>
The entries.
-
#id ⇒ String
The entry set identifier.
-
#idempotency_key ⇒ String
The idempotency key you chose for this object.
-
#transaction_id ⇒ String
The transaction identifier, if any.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#created_at ⇒ String
When the entry set was created.
14 |
# File 'lib/increase/models/bookkeeping_entry_set.rb', line 14 required :created_at, String |
#date ⇒ String
The timestamp of the entry set.
19 |
# File 'lib/increase/models/bookkeeping_entry_set.rb', line 19 required :date, String |
#entries ⇒ Array<Increase::Models::BookkeepingEntrySet::Entry>
The entries.
24 |
# File 'lib/increase/models/bookkeeping_entry_set.rb', line 24 required :entries, Increase::ArrayOf.new(-> { Increase::Models::BookkeepingEntrySet::Entry }) |
#id ⇒ String
The entry set identifier.
9 |
# File 'lib/increase/models/bookkeeping_entry_set.rb', line 9 required :id, String |
#idempotency_key ⇒ String
The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.
29 |
# File 'lib/increase/models/bookkeeping_entry_set.rb', line 29 required :idempotency_key, String |
#transaction_id ⇒ String
The transaction identifier, if any.
34 |
# File 'lib/increase/models/bookkeeping_entry_set.rb', line 34 required :transaction_id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be bookkeeping_entry_set
.
39 |
# File 'lib/increase/models/bookkeeping_entry_set.rb', line 39 required :type, Increase::Enum.new(:bookkeeping_entry_set) |