Class: Quickfix::UnderlyingUnitOfMeasureQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingUnitOfMeasureQty

Returns a new instance of UnderlyingUnitOfMeasureQty.



17621
17622
17623
17624
17625
17626
17627
# File 'lib/quickfix_fields.rb', line 17621

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