Class: Quickfix::OvernightInterestRate

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

Returns a new instance of OvernightInterestRate.



62679
62680
62681
62682
62683
62684
62685
# File 'lib/quickfix_fields.rb', line 62679

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

Class Method Details

.fieldObject



62676
62677
62678
# File 'lib/quickfix_fields.rb', line 62676

def OvernightInterestRate.field
  return 2590
end