Class: Quickfix::ManualOrderIndicator

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BoolField

#getValue, #setValue

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

Class Method Details

.fieldObject



13796
13797
13798
# File 'lib/quickfix_fields.rb', line 13796

def ManualOrderIndicator.field
	return 1028
end