Class: Quickfix::TradeAllocStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TradeAllocStatus

Returns a new instance of TradeAllocStatus.



24108
24109
24110
24111
24112
24113
24114
# File 'lib/quickfix_fields.rb', line 24108

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