Class: Quickfix::UnderlyingLastQty

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingLastQty

Returns a new instance of UnderlyingLastQty.



8781
8782
8783
8784
8785
8786
8787
# File 'lib/quickfix_fields.rb', line 8781

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