Class: OfxParser::Status
- Inherits:
-
Object
- Object
- OfxParser::Status
- Defined in:
- lib/ofx.rb
Overview
Status of a sign on
Constant Summary collapse
- CODES =
{ '0' => 'Success', '2000' => 'General error', '15000' => 'Must change USERPASS', '15500' => 'Signon invalid', '15501' => 'Customer account already in use', '15502' => 'USERPASS Lockout' }
Instance Attribute Summary collapse
-
#code ⇒ Object
Returns the value of attribute code.
-
#message ⇒ Object
Returns the value of attribute message.
-
#severity ⇒ Object
Returns the value of attribute severity.
Instance Method Summary collapse
Instance Attribute Details
#code ⇒ Object
Returns the value of attribute code.
162 163 164 |
# File 'lib/ofx.rb', line 162 def code @code end |
#message ⇒ Object
Returns the value of attribute message.
162 163 164 |
# File 'lib/ofx.rb', line 162 def @message end |
#severity ⇒ Object
Returns the value of attribute severity.
162 163 164 |
# File 'lib/ofx.rb', line 162 def severity @severity end |
Instance Method Details
#code_desc ⇒ Object
173 174 175 |
# File 'lib/ofx.rb', line 173 def code_desc CODES[code] end |