Class: OFX::Document::BankMessageSet
- Inherits:
-
OFX::Document
- Object
- Aggregate
- OFX::Document
- OFX::Document::BankMessageSet
- Defined in:
- lib/ofx/document/bank_message_set.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ BankMessageSet
constructor
A new instance of BankMessageSet.
- #statement_request ⇒ Object
Methods inherited from OFX::Document
Methods inherited from Aggregate
Constructor Details
#initialize(options = {}) ⇒ BankMessageSet
Returns a new instance of BankMessageSet.
5 6 7 8 9 10 11 12 |
# File 'lib/ofx/document/bank_message_set.rb', line 5 def initialize( = {}) @routing = [:routing] @account = [:account] @start = [:start] @end = [:end] @id = [:id] super end |
Instance Method Details
#statement_request ⇒ Object
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/ofx/document/bank_message_set.rb', line 14 def statement_request StatementTransaction.new( name: :stmttrnrq, routing: @routing, account: @account, start: @start, end: @end, id: trnuid ) end |