Class: Quickfix::UnderlyingProductComplex

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingProductComplex

Returns a new instance of UnderlyingProductComplex.



26279
26280
26281
26282
26283
26284
26285
# File 'lib/quickfix_fields.rb', line 26279

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