Class: Quickfix::Username

Inherits:
StringField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

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