Class: Quickfix::UnderlyingSymbol

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingSymbol

Returns a new instance of UnderlyingSymbol.



13643
13644
13645
13646
13647
13648
13649
# File 'lib/quickfix_fields.rb', line 13643

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

Class Method Details

.fieldObject



13640
13641
13642
# File 'lib/quickfix_fields.rb', line 13640

def UnderlyingSymbol.field
  return 311
end