Class: OFX::Document::SignonMessageSet
- Inherits:
-
OFX::Document
- Object
- Aggregate
- OFX::Document
- OFX::Document::SignonMessageSet
- Defined in:
- lib/ofx/document/signon_message_set.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ SignonMessageSet
constructor
A new instance of SignonMessageSet.
- #sonrq ⇒ Object
Methods inherited from OFX::Document
Methods inherited from Aggregate
Constructor Details
#initialize(options = {}) ⇒ SignonMessageSet
Returns a new instance of SignonMessageSet.
5 6 7 8 9 10 11 12 13 14 |
# File 'lib/ofx/document/signon_message_set.rb', line 5 def initialize( = {}) @user = [:user] @password = [:password] @time = [:time] @fi_org = [:fi_org] @fi_fid = [:fi_fid] @app_id = [:app_id] @app_ver = [:app_ver] super end |
Instance Method Details
#sonrq ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/ofx/document/signon_message_set.rb', line 16 def sonrq SignonRequest.new( name: :sonrq, user: @user, password: @password, time: @time, fi_org: @fi_org, fi_fid: @fi_fid, app_id: @app_id, app_ver: @app_ver ) end |