Class: Quickfix::PosMaintStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PosMaintStatus

Returns a new instance of PosMaintStatus.



9899
9900
9901
9902
9903
9904
9905
# File 'lib/quickfix_fields.rb', line 9899

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