Class: Quickfix::DividendCashEquivalentPercentage

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DividendCashEquivalentPercentage

Returns a new instance of DividendCashEquivalentPercentage.



63901
63902
63903
63904
63905
63906
63907
# File 'lib/quickfix_fields.rb', line 63901

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