Class: Quickfix::ComplexEventXIDRef

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ComplexEventXIDRef

Returns a new instance of ComplexEventXIDRef.



41463
41464
41465
41466
41467
41468
41469
# File 'lib/quickfix_fields.rb', line 41463

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