Class: Quickfix::UnderlyingComplexEventType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingComplexEventType

Returns a new instance of UnderlyingComplexEventType.



26786
26787
26788
26789
26790
26791
26792
# File 'lib/quickfix_fields.rb', line 26786

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

Class Method Details

.fieldObject



26783
26784
26785
# File 'lib/quickfix_fields.rb', line 26783

def UnderlyingComplexEventType.field
  return 2046
end