Class: Quickfix::CancelText

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

Returns a new instance of CancelText.



77148
77149
77150
77151
77152
77153
77154
# File 'lib/quickfix_fields.rb', line 77148

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

Class Method Details

.fieldObject



77145
77146
77147
# File 'lib/quickfix_fields.rb', line 77145

def CancelText.field
  return 2807
end