Class: Quickfix::UserStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UserStatus

Returns a new instance of UserStatus.



12499
12500
12501
12502
12503
12504
12505
# File 'lib/quickfix_fields.rb', line 12499

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