Class: Quickfix::OrdRejReason

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

Returns a new instance of OrdRejReason.



1917
1918
1919
1920
1921
1922
1923
# File 'lib/quickfix_fields.rb', line 1917

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

Class Method Details

.fieldObject



1914
1915
1916
# File 'lib/quickfix_fields.rb', line 1914

def OrdRejReason.field
	return 103
end