Class: Quickfix::UnderlyingAdjustedQuantity

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingAdjustedQuantity

Returns a new instance of UnderlyingAdjustedQuantity.



14007
14008
14009
14010
14011
14012
14013
# File 'lib/quickfix_fields.rb', line 14007

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