Class: Quickfix::PriceQualifier

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

Instance Method Summary collapse

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