Class: Quickfix::PriceQualifier

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ PriceQualifier

Returns a new instance of PriceQualifier.



75770
75771
75772
75773
75774
75775
75776
# File 'lib/quickfix_fields.rb', line 75770

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

Class Method Details

.fieldObject



75767
75768
75769
# File 'lib/quickfix_fields.rb', line 75767

def PriceQualifier.field
	return 2710
end