Class: Quickfix::UnderlyingSymbol

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) ⇒ UnderlyingSymbol

Returns a new instance of UnderlyingSymbol.



3932
3933
3934
3935
3936
3937
3938
# File 'lib/quickfix_fields.rb', line 3932

def initialize(data = nil)
  if( data == nil )
    super(311)
  else
    super(311, data)
  end
end

Class Method Details

.fieldObject



3929
3930
3931
# File 'lib/quickfix_fields.rb', line 3929

def UnderlyingSymbol.field
  return 311
end