Class: Quickfix::StrikeMultiplier

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

Returns a new instance of StrikeMultiplier.



13045
13046
13047
13048
13049
13050
13051
# File 'lib/quickfix_fields.rb', line 13045

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

Class Method Details

.fieldObject



13042
13043
13044
# File 'lib/quickfix_fields.rb', line 13042

def StrikeMultiplier.field
  return 967
end