Class: Quickfix::ManualOrderIndicator

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ManualOrderIndicator

Returns a new instance of ManualOrderIndicator.



13799
13800
13801
13802
13803
13804
13805
# File 'lib/quickfix_fields.rb', line 13799

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