class OFX::Data::Banking::Statement::Response

Attributes

account[R]
available_balance[R]
curdef[R]
end_date[R]
ledger_balance[R]
marketing_info[R]
start_date[R]
transactions[R]

Public Class Methods

new(opts) click to toggle source
# File lib/ofx/data/banking/statement/response.rb, line 9
def initialize(opts)
  @curdef = opts.fetch(:curdef)
  @account = opts.fetch(:account)
  @ledger_balance = opts.fetch(:ledger_balance)
  @available_balance = opts.fetch(:available_balance)
  @start_date = opts.fetch(:start_date)
  @end_date = opts.fetch(:end_date)
  @transactions = opts.fetch(:transactions, [])
  @marketing_info = opts.fetch(:marketing_info, "")
end

Public Instance Methods

ofx_type() click to toggle source
# File lib/ofx/data/banking/statement/response.rb, line 20
def ofx_type
  :"banking.statement.response"
end