Class: Quickfix::DividendCompoundingMethod

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DividendCompoundingMethod

Returns a new instance of DividendCompoundingMethod.



63862
63863
63864
63865
63866
63867
63868
# File 'lib/quickfix_fields.rb', line 63862

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