Class: Quickfix::DividendComposition

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DividendComposition

Returns a new instance of DividendComposition.



63927
63928
63929
63930
63931
63932
63933
# File 'lib/quickfix_fields.rb', line 63927

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