Class: Increase::Models::Account
- Defined in:
- lib/increase/models/account.rb
Instance Attribute Summary collapse
-
#bank ⇒ Symbol
The bank the Account is with.
-
#closed_at ⇒ String
The ISO 8601 time at which the Account was closed.
-
#created_at ⇒ String
The ISO 8601 time at which the Account was created.
-
#currency ⇒ Symbol
The ISO 4217 code for the Account currency.
-
#entity_id ⇒ String
The identifier for the Entity the Account belongs to.
-
#id ⇒ String
The Account identifier.
-
#idempotency_key ⇒ String
The idempotency key you chose for this object.
-
#informational_entity_id ⇒ String
The identifier of an Entity that, while not owning the Account, is associated with its activity.
-
#interest_accrued ⇒ String
The interest accrued but not yet paid, expressed as a string containing a floating-point value.
-
#interest_accrued_at ⇒ String
The latest ISO 8601 date on which interest was accrued.
-
#interest_rate ⇒ String
The Interest Rate currently being earned on the account, as a string containing a decimal number.
-
#name_ ⇒ String
The name you choose for the Account.
-
#program_id ⇒ String
The identifier of the Program determining the compliance and commercial terms of this Account.
-
#status ⇒ Symbol
The status of the Account.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#bank ⇒ Symbol
The bank the Account is with.
14 |
# File 'lib/increase/models/account.rb', line 14 required :bank, Increase::Enum.new(:blue_ridge_bank, :first_internet_bank) |
#closed_at ⇒ String
The ISO 8601 time at which the Account was closed.
19 |
# File 'lib/increase/models/account.rb', line 19 required :closed_at, String |
#created_at ⇒ String
The ISO 8601 time at which the Account was created.
24 |
# File 'lib/increase/models/account.rb', line 24 required :created_at, String |
#currency ⇒ Symbol
The ISO 4217 code for the Account currency.
29 |
# File 'lib/increase/models/account.rb', line 29 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#entity_id ⇒ String
The identifier for the Entity the Account belongs to.
34 |
# File 'lib/increase/models/account.rb', line 34 required :entity_id, String |
#id ⇒ String
The Account identifier.
9 |
# File 'lib/increase/models/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.
39 |
# File 'lib/increase/models/account.rb', line 39 required :idempotency_key, String |
#informational_entity_id ⇒ String
The identifier of an Entity that, while not owning the Account, is associated with its activity.
44 |
# File 'lib/increase/models/account.rb', line 44 required :informational_entity_id, String |
#interest_accrued ⇒ String
The interest accrued but not yet paid, expressed as a string containing a floating-point value.
49 |
# File 'lib/increase/models/account.rb', line 49 required :interest_accrued, String |
#interest_accrued_at ⇒ String
The latest ISO 8601 date on which interest was accrued.
54 |
# File 'lib/increase/models/account.rb', line 54 required :interest_accrued_at, String |
#interest_rate ⇒ String
The Interest Rate currently being earned on the account, as a string containing a decimal number. For example, a 1% interest rate would be represented as "0.01".
59 |
# File 'lib/increase/models/account.rb', line 59 required :interest_rate, String |
#name_ ⇒ String
The name you choose for the Account.
64 |
# File 'lib/increase/models/account.rb', line 64 required :name_, String |
#program_id ⇒ String
The identifier of the Program determining the compliance and commercial terms of this Account.
69 |
# File 'lib/increase/models/account.rb', line 69 required :program_id, String |
#status ⇒ Symbol
The status of the Account.
74 |
# File 'lib/increase/models/account.rb', line 74 required :status, Increase::Enum.new(:open, :closed) |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be account
.
79 |
# File 'lib/increase/models/account.rb', line 79 required :type, Increase::Enum.new(:account) |