Class: Increase::Models::IntrafiBalance
- Defined in:
- lib/increase/models/intrafi_balance.rb
Defined Under Namespace
Classes: Balance
Instance Attribute Summary collapse
-
#balances ⇒ Array<Increase::Models::IntrafiBalance::Balance>
Each entry represents a balance held at a different bank.
-
#currency ⇒ Symbol
The ISO 4217 code for the account currency.
-
#effective_date ⇒ String
The date this balance reflects.
-
#id ⇒ String
The identifier of this balance.
-
#total_balance ⇒ Integer
The total balance, in minor units of
currency
. -
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#balances ⇒ Array<Increase::Models::IntrafiBalance::Balance>
Each entry represents a balance held at a different bank. IntraFi separates the total balance across many participating banks in the network.
14 |
# File 'lib/increase/models/intrafi_balance.rb', line 14 required :balances, Increase::ArrayOf.new(-> { Increase::Models::IntrafiBalance::Balance }) |
#currency ⇒ Symbol
The ISO 4217 code for the account currency.
19 |
# File 'lib/increase/models/intrafi_balance.rb', line 19 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#effective_date ⇒ String
The date this balance reflects.
24 |
# File 'lib/increase/models/intrafi_balance.rb', line 24 required :effective_date, String |
#id ⇒ String
The identifier of this balance.
9 |
# File 'lib/increase/models/intrafi_balance.rb', line 9 required :id, String |
#total_balance ⇒ Integer
The total balance, in minor units of currency
. Increase reports this balance to IntraFi daily.
29 |
# File 'lib/increase/models/intrafi_balance.rb', line 29 required :total_balance, Integer |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be intrafi_balance
.
34 |
# File 'lib/increase/models/intrafi_balance.rb', line 34 required :type, Increase::Enum.new(:intrafi_balance) |