Class: Quickfix::TradingUnitPeriodMultiplier

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TradingUnitPeriodMultiplier

Returns a new instance of TradingUnitPeriodMultiplier.



57050
57051
57052
57053
57054
57055
57056
# File 'lib/quickfix_fields.rb', line 57050

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

Class Method Details

.fieldObject



57047
57048
57049
# File 'lib/quickfix_fields.rb', line 57047

def TradingUnitPeriodMultiplier.field
  return 2353
end