Class: Quickfix::OrderEventText

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

Returns a new instance of OrderEventText.



23562
23563
23564
23565
23566
23567
23568
# File 'lib/quickfix_fields.rb', line 23562

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

Class Method Details

.fieldObject



23559
23560
23561
# File 'lib/quickfix_fields.rb', line 23559

def OrderEventText.field
  return 1802
end