Class: Quickfix::PriceUnitOfMeasureQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PriceUnitOfMeasureQty

Returns a new instance of PriceUnitOfMeasureQty.



15892
15893
15894
15895
15896
15897
15898
# File 'lib/quickfix_fields.rb', line 15892

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