Class: Quickfix::TrdRegTimestampType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TrdRegTimestampType

Returns a new instance of TrdRegTimestampType.



10523
10524
10525
10526
10527
10528
10529
# File 'lib/quickfix_fields.rb', line 10523

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