Class: Quickfix::LegEventTimePeriod

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegEventTimePeriod

Returns a new instance of LegEventTimePeriod.



27020
27021
27022
27023
27024
27025
27026
# File 'lib/quickfix_fields.rb', line 27020

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