Class: Quickfix::CollateralFXRate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CollateralFXRate

Returns a new instance of CollateralFXRate.



40267
40268
40269
40270
40271
40272
40273
# File 'lib/quickfix_fields.rb', line 40267

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