Class: Quickfix::ResponseDestination

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

Returns a new instance of ResponseDestination.



9951
9952
9953
9954
9955
9956
9957
# File 'lib/quickfix_fields.rb', line 9951

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

Class Method Details

.fieldObject



9948
9949
9950
# File 'lib/quickfix_fields.rb', line 9948

def ResponseDestination.field
  return 726
end