Class: Quickfix::FeeMultiplier

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ FeeMultiplier

Returns a new instance of FeeMultiplier.



14072
14073
14074
14075
14076
14077
14078
# File 'lib/quickfix_fields.rb', line 14072

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

Class Method Details

.fieldObject



14069
14070
14071
# File 'lib/quickfix_fields.rb', line 14069

def FeeMultiplier.field
  return 1329
end