Class: Quickfix::SenderLocationID

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

Returns a new instance of SenderLocationID.



435
436
437
438
439
440
441
# File 'lib/quickfix_fields.rb', line 435

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

Class Method Details

.fieldObject



432
433
434
# File 'lib/quickfix_fields.rb', line 432

def SenderLocationID.field
  return 142
end