Class: Quickfix::UnderlyingAdjustedQuantity

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

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

Class Method Details

.fieldObject



14004
14005
14006
# File 'lib/quickfix_fields.rb', line 14004

def UnderlyingAdjustedQuantity.field
  return 1044
end