Class: Quickfix::PositionFXRate

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

Returns a new instance of PositionFXRate.



40358
40359
40360
40361
40362
40363
40364
# File 'lib/quickfix_fields.rb', line 40358

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

Class Method Details

.fieldObject



40355
40356
40357
# File 'lib/quickfix_fields.rb', line 40355

def PositionFXRate.field
  return 2097
end