Class: Increase::Models::IntrafiBalance::Balance
- Defined in:
- lib/increase/models/intrafi_balance.rb
Defined Under Namespace
Classes: BankLocation
Instance Attribute Summary collapse
-
#balance ⇒ Integer
The balance, in minor units of
currency
, held with this bank. -
#bank ⇒ String
The name of the bank holding these funds.
-
#bank_location ⇒ Increase::Models::IntrafiBalance::Balance::BankLocation
The primary location of the bank.
-
#fdic_certificate_number ⇒ String
The Federal Deposit Insurance Corporation (FDIC) certificate number of the bank.
-
#id ⇒ String
The identifier of this balance.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#balance ⇒ Integer
The balance, in minor units of currency
, held with this bank.
45 |
# File 'lib/increase/models/intrafi_balance.rb', line 45 required :balance, Integer |
#bank ⇒ String
The name of the bank holding these funds.
50 |
# File 'lib/increase/models/intrafi_balance.rb', line 50 required :bank, String |
#bank_location ⇒ Increase::Models::IntrafiBalance::Balance::BankLocation
The primary location of the bank.
55 |
# File 'lib/increase/models/intrafi_balance.rb', line 55 required :bank_location, -> { Increase::Models::IntrafiBalance::Balance::BankLocation } |
#fdic_certificate_number ⇒ String
The Federal Deposit Insurance Corporation (FDIC) certificate number of the bank. Because many banks have the same or similar names, this can be used to uniquely identify the institution.
60 |
# File 'lib/increase/models/intrafi_balance.rb', line 60 required :fdic_certificate_number, String |
#id ⇒ String
The identifier of this balance.
40 |
# File 'lib/increase/models/intrafi_balance.rb', line 40 required :id, String |