Class: Quickfix::ProductComplex

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ProductComplex

Returns a new instance of ProductComplex.



16347
16348
16349
16350
16351
16352
16353
# File 'lib/quickfix_fields.rb', line 16347

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