Class: Increase::Models::BookkeepingAccount
- Defined in:
- lib/increase/models/bookkeeping_account.rb
Instance Attribute Summary collapse
-
#account_id ⇒ String
The API Account associated with this bookkeeping account.
-
#compliance_category ⇒ Symbol
The compliance category of the account.
-
#entity_id ⇒ String
The Entity associated with this bookkeeping account.
-
#id ⇒ String
The account identifier.
-
#idempotency_key ⇒ String
The idempotency key you chose for this object.
-
#name_ ⇒ String
The name you choose for the account.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#account_id ⇒ String
The API Account associated with this bookkeeping account.
14 |
# File 'lib/increase/models/bookkeeping_account.rb', line 14 required :account_id, String |
#compliance_category ⇒ Symbol
The compliance category of the account.
19 |
# File 'lib/increase/models/bookkeeping_account.rb', line 19 required :compliance_category, Increase::Enum.new(:commingled_cash, :customer_balance) |
#entity_id ⇒ String
The Entity associated with this bookkeeping account.
24 |
# File 'lib/increase/models/bookkeeping_account.rb', line 24 required :entity_id, String |
#id ⇒ String
The account identifier.
9 |
# File 'lib/increase/models/bookkeeping_account.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_account.rb', line 29 required :idempotency_key, String |
#name_ ⇒ String
The name you choose for the account.
34 |
# File 'lib/increase/models/bookkeeping_account.rb', line 34 required :name_, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be bookkeeping_account
.
39 |
# File 'lib/increase/models/bookkeeping_account.rb', line 39 required :type, Increase::Enum.new(:bookkeeping_account) |