Class: Quickfix::CollateralFXRate

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

Class Method Details

.fieldObject



40264
40265
40266
# File 'lib/quickfix_fields.rb', line 40264

def CollateralFXRate.field
  return 2090
end