Class: Quickfix::LegTotalTradeQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegTotalTradeQty

Returns a new instance of LegTotalTradeQty.



57102
57103
57104
57105
57106
57107
57108
# File 'lib/quickfix_fields.rb', line 57102

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