Class: Quickfix::TradingCapacity

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

Instance Method Summary collapse

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