Class: Quickfix::PosReqStatus

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

Returns a new instance of PosReqStatus.



9990
9991
9992
9993
9994
9995
9996
# File 'lib/quickfix_fields.rb', line 9990

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

Class Method Details

.fieldObject



9987
9988
9989
# File 'lib/quickfix_fields.rb', line 9987

def PosReqStatus.field
	return 729
end