Class: Quickfix::LegEventTime

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegEventTime

Returns a new instance of LegEventTime.



26994
26995
26996
26997
26998
26999
27000
# File 'lib/quickfix_fields.rb', line 26994

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