Class: Quickfix::LiquidityValue

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LiquidityValue

Returns a new instance of LiquidityValue.



5037
5038
5039
5040
5041
5042
5043
# File 'lib/quickfix_fields.rb', line 5037

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