Class: Quickfix::EncodedLegEventText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncodedLegEventText

Returns a new instance of EncodedLegEventText.



27163
27164
27165
27166
27167
27168
27169
# File 'lib/quickfix_fields.rb', line 27163

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