Class: Quickfix::LegTotalTradeMultipliedQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegTotalTradeMultipliedQty

Returns a new instance of LegTotalTradeMultipliedQty.



57141
57142
57143
57144
57145
57146
57147
# File 'lib/quickfix_fields.rb', line 57141

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