Class: Quickfix::UnderlyingFXRate

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

Returns a new instance of UnderlyingFXRate.



14020
14021
14022
14023
14024
14025
14026
# File 'lib/quickfix_fields.rb', line 14020

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

Class Method Details

.fieldObject



14017
14018
14019
# File 'lib/quickfix_fields.rb', line 14017

def UnderlyingFXRate.field
  return 1045
end