Class: Quickfix::MDValueTier

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

Returns a new instance of MDValueTier.



75783
75784
75785
75786
75787
75788
75789
# File 'lib/quickfix_fields.rb', line 75783

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

Class Method Details

.fieldObject



75780
75781
75782
# File 'lib/quickfix_fields.rb', line 75780

def MDValueTier.field
  return 2711
end