Class: Quickfix::PackageID

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

Returns a new instance of PackageID.



61665
61666
61667
61668
61669
61670
61671
# File 'lib/quickfix_fields.rb', line 61665

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

Class Method Details

.fieldObject



61662
61663
61664
# File 'lib/quickfix_fields.rb', line 61662

def PackageID.field
  return 2489
end