Class: Quickfix::OrderDelayUnit

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrderDelayUnit

Returns a new instance of OrderDelayUnit.



18921
18922
18923
18924
18925
18926
18927
# File 'lib/quickfix_fields.rb', line 18921

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