Class: Quickfix::InitialDisplayQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ InitialDisplayQty

Returns a new instance of InitialDisplayQty.



22067
22068
22069
22070
22071
22072
22073
# File 'lib/quickfix_fields.rb', line 22067

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