Class: Quickfix::DocumentationText

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) ⇒ DocumentationText

Returns a new instance of DocumentationText.



42217
42218
42219
42220
42221
42222
42223
# File 'lib/quickfix_fields.rb', line 42217

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

Class Method Details

.fieldObject



42214
42215
42216
# File 'lib/quickfix_fields.rb', line 42214

def DocumentationText.field
  return 1513
end