Class: Quickfix::EncodedUnderlyingEventText

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EncodedUnderlyingEventText

Returns a new instance of EncodedUnderlyingEventText.



27137
27138
27139
27140
27141
27142
27143
# File 'lib/quickfix_fields.rb', line 27137

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