Class: Quickfix::UnderlyingStartValue

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingStartValue

Returns a new instance of UnderlyingStartValue.



11966
11967
11968
11969
11970
11971
11972
# File 'lib/quickfix_fields.rb', line 11966

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