class OFX::BankAccount
Represents a bank (checking or savings) account parsed from an OFX statement.
Example
account = OFX.new("bank.ofx").account account.account_id #=> "123456789" account.bank_id #=> "021000021" account.account_type #=> "CHECKING" account.currency #=> "USD" account.balance #=> #<OFX::Balance ...> account.transactions #=> #<OFX::TransactionCollection ...>
Attributes
Account number (String).
Account type, e.g. “CHECKING”, “SAVINGS” (String or nil).
Routing number of the financial institution (String or nil).
Branch identifier, when present (String or nil).