Class: Quickfix::LegEventText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegEventText

Returns a new instance of LegEventText.



27046
27047
27048
27049
27050
27051
27052
# File 'lib/quickfix_fields.rb', line 27046

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