Class: Quickfix::ListID

Inherits:
StringField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ListID

Returns a new instance of ListID.



6571
6572
6573
6574
6575
6576
6577
# File 'lib/quickfix_fields.rb', line 6571

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

Class Method Details

.fieldObject



6568
6569
6570
# File 'lib/quickfix_fields.rb', line 6568

def ListID.field
  return 66
end