Class: Quickfix::UnderlyingDividendPaymentAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingDividendPaymentAmount

Returns a new instance of UnderlyingDividendPaymentAmount.



71857
71858
71859
71860
71861
71862
71863
# File 'lib/quickfix_fields.rb', line 71857

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