Class: Quickfix::StatusText

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

Returns a new instance of StatusText.



12538
12539
12540
12541
12542
12543
12544
# File 'lib/quickfix_fields.rb', line 12538

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

Class Method Details

.fieldObject



12535
12536
12537
# File 'lib/quickfix_fields.rb', line 12535

def StatusText.field
  return 929
end