Class: Quickfix::UnderlyingRepurchaseRate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingRepurchaseRate

Returns a new instance of UnderlyingRepurchaseRate.



5986
5987
5988
5989
5990
5991
5992
# File 'lib/quickfix_fields.rb', line 5986

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