Class: Quickfix::OvernightInterestRate

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

Instance Method Summary collapse

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