Class: Quickfix::DiscountFactor

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DiscountFactor

Returns a new instance of DiscountFactor.



21859
21860
21861
21862
21863
21864
21865
# File 'lib/quickfix_fields.rb', line 21859

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