Class: Quickfix::NBBOEntryType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ NBBOEntryType

Returns a new instance of NBBOEntryType.



77460
77461
77462
77463
77464
77465
77466
# File 'lib/quickfix_fields.rb', line 77460

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

Class Method Details

.fieldObject



77457
77458
77459
# File 'lib/quickfix_fields.rb', line 77457

def NBBOEntryType.field
  return 2831
end