Class: Quickfix::EncodedUnderlyingEventText

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

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

Class Method Details

.fieldObject



27134
27135
27136
# File 'lib/quickfix_fields.rb', line 27134

def EncodedUnderlyingEventText.field
  return 2073
end