Class: Quickfix::FeeMultiplier

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

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

Class Method Details

.fieldObject



17787
17788
17789
# File 'lib/quickfix_fields.rb', line 17787

def FeeMultiplier.field
  return 1329
end