Class: Quickfix::LegEventTime

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from UtcTimeStampField

#<, #==, #getValue, #setValue

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

Class Method Details

.fieldObject



26991
26992
26993
# File 'lib/quickfix_fields.rb', line 26991

def LegEventTime.field
	return 2062
end