class OFX::Data::Banking::Balance
Attributes
amount[R]
date[R]
Public Class Methods
new(opts)
click to toggle source
# File lib/ofx/data/banking/balance.rb, line 10 def initialize(opts) @amount = BigDecimal.new(opts.fetch(:amount)) @date = opts.fetch(:date) end
Public Instance Methods
ofx_type()
click to toggle source
# File lib/ofx/data/banking/balance.rb, line 15 def ofx_type :"banking.balance" end