Class: Quickfix::Username

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

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

Class Method Details

.fieldObject



627
628
629
# File 'lib/quickfix_fields.rb', line 627

def Username.field
  return 553
end