Class: Quickfix::UnderlyingBasketDivisor

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingBasketDivisor

Returns a new instance of UnderlyingBasketDivisor.



72442
72443
72444
72445
72446
72447
72448
# File 'lib/quickfix_fields.rb', line 72442

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

Class Method Details

.fieldObject



72439
72440
72441
# File 'lib/quickfix_fields.rb', line 72439

def UnderlyingBasketDivisor.field
  return 2630
end