class OFX::Data::Banking::Statement::Transaction::Response
Attributes
response[R]
status[R]
trnuid[R]
Public Class Methods
new(opts)
click to toggle source
# File lib/ofx/data/banking/statement/transaction.rb, line 9 def initialize(opts) @trnuid = opts.fetch(:trnuid) @status = opts.fetch(:status) @response = opts.fetch(:response) end
Public Instance Methods
ofx_type()
click to toggle source
# File lib/ofx/data/banking/statement/transaction.rb, line 15 def ofx_type :"banking.statement.transaction.response" end