Class: Quickfix::UnderlyingCapPrice

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

Returns a new instance of UnderlyingCapPrice.



26617
26618
26619
26620
26621
26622
26623
# File 'lib/quickfix_fields.rb', line 26617

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

Class Method Details

.fieldObject



26614
26615
26616
# File 'lib/quickfix_fields.rb', line 26614

def UnderlyingCapPrice.field
  return 2033
end