Class: Quickfix::ExecTypeReason

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExecTypeReason

Returns a new instance of ExecTypeReason.



60469
60470
60471
60472
60473
60474
60475
# File 'lib/quickfix_fields.rb', line 60469

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