Class: Quickfix::LegEventType

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

Returns a new instance of LegEventType.



26968
26969
26970
26971
26972
26973
26974
# File 'lib/quickfix_fields.rb', line 26968

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

Class Method Details

.fieldObject



26965
26966
26967
# File 'lib/quickfix_fields.rb', line 26965

def LegEventType.field
  return 2060
end