Class: Quickfix::UnderlyingEventText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingEventText

Returns a new instance of UnderlyingEventText.



27111
27112
27113
27114
27115
27116
27117
# File 'lib/quickfix_fields.rb', line 27111

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