Class: Quickfix::DisplayQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DisplayQty

Returns a new instance of DisplayQty.



15125
15126
15127
15128
15129
15130
15131
# File 'lib/quickfix_fields.rb', line 15125

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