Class: Quickfix::UnitOfMeasureQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnitOfMeasureQty

Returns a new instance of UnitOfMeasureQty.



15320
15321
15322
15323
15324
15325
15326
# File 'lib/quickfix_fields.rb', line 15320

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