Class: Quickfix::SideValueInd

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

Returns a new instance of SideValueInd.



4998
4999
5000
5001
5002
5003
5004
# File 'lib/quickfix_fields.rb', line 4998

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

Class Method Details

.fieldObject



4995
4996
4997
# File 'lib/quickfix_fields.rb', line 4995

def SideValueInd.field
	return 401
end