Class: Quickfix::UnderlyingEventPx

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

Returns a new instance of UnderlyingEventPx.



26019
26020
26021
26022
26023
26024
26025
# File 'lib/quickfix_fields.rb', line 26019

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

Class Method Details

.fieldObject



26016
26017
26018
# File 'lib/quickfix_fields.rb', line 26016

def UnderlyingEventPx.field
  return 1987
end