Class: Quickfix::FeeMultiplier

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ FeeMultiplier

Returns a new instance of FeeMultiplier.



17790
17791
17792
17793
17794
17795
17796
# File 'lib/quickfix_fields.rb', line 17790

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