Class: Quickfix::AggregatedQty

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) ⇒ AggregatedQty

Returns a new instance of AggregatedQty.



76940
76941
76942
76943
76944
76945
76946
# File 'lib/quickfix_fields.rb', line 76940

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

Class Method Details

.fieldObject



76937
76938
76939
# File 'lib/quickfix_fields.rb', line 76937

def AggregatedQty.field
  return 2789
end