Class: Quickfix::UnderlyingFXRate

Inherits:
DoubleField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

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