Class: Quickfix::TradeQtyType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradeQtyType

Returns a new instance of TradeQtyType.



24134
24135
24136
24137
24138
24139
24140
# File 'lib/quickfix_fields.rb', line 24134

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