Class: Quickfix::AggregatedQty

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

Instance Method Summary collapse

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