Class: Quickfix::TradingCapacity

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) ⇒ TradingCapacity

Returns a new instance of TradingCapacity.



23731
23732
23733
23734
23735
23736
23737
# File 'lib/quickfix_fields.rb', line 23731

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

Class Method Details

.fieldObject



23728
23729
23730
# File 'lib/quickfix_fields.rb', line 23728

def TradingCapacity.field
  return 1815
end