Class: Quickfix::UnderlyingSettlPrice

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

Returns a new instance of UnderlyingSettlPrice.



10029
10030
10031
10032
10033
10034
10035
# File 'lib/quickfix_fields.rb', line 10029

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

Class Method Details

.fieldObject



10026
10027
10028
# File 'lib/quickfix_fields.rb', line 10026

def UnderlyingSettlPrice.field
  return 732
end