Class: Quickfix::EventTime

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EventTime

Returns a new instance of EventTime.



13201
13202
13203
13204
13205
13206
13207
# File 'lib/quickfix_fields.rb', line 13201

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

Class Method Details

.fieldObject



13198
13199
13200
# File 'lib/quickfix_fields.rb', line 13198

def EventTime.field
	return 1145
end