Class: OFX::Data::Signon::Response
- Inherits:
-
Object
- Object
- OFX::Data::Signon::Response
- Defined in:
- lib/ofx/data/signon/response.rb
Instance Attribute Summary collapse
-
#dtserver ⇒ Object
readonly
Returns the value of attribute dtserver.
-
#language ⇒ Object
readonly
Returns the value of attribute language.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(opts) ⇒ Response
constructor
A new instance of Response.
- #ofx_type ⇒ Object
Constructor Details
#initialize(opts) ⇒ Response
Returns a new instance of Response.
7 8 9 10 11 |
# File 'lib/ofx/data/signon/response.rb', line 7 def initialize(opts) @status = opts.fetch(:status) @dtserver = opts.fetch(:dtserver) @language = opts.fetch(:language) end |
Instance Attribute Details
#dtserver ⇒ Object (readonly)
Returns the value of attribute dtserver.
5 6 7 |
# File 'lib/ofx/data/signon/response.rb', line 5 def dtserver @dtserver end |
#language ⇒ Object (readonly)
Returns the value of attribute language.
5 6 7 |
# File 'lib/ofx/data/signon/response.rb', line 5 def language @language end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
5 6 7 |
# File 'lib/ofx/data/signon/response.rb', line 5 def status @status end |
Instance Method Details
#ofx_type ⇒ Object
13 14 15 |
# File 'lib/ofx/data/signon/response.rb', line 13 def ofx_type :"signon.response" end |