Class: Quickfix::Username
- Inherits:
-
StringField
- Object
- StringField
- Quickfix::Username
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ Username
constructor
A new instance of Username.
Constructor Details
#initialize(data = nil) ⇒ Username
Returns a new instance of Username.
630 631 632 633 634 635 636 |
# File 'lib/quickfix_fields.rb', line 630 def initialize(data = nil) if( data == nil ) super(553) else super(553, data) end end |