Class: Quickfix::ExecutionTimestamp

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExecutionTimestamp

Returns a new instance of ExecutionTimestamp.



76394
76395
76396
76397
76398
76399
76400
# File 'lib/quickfix_fields.rb', line 76394

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