xxxxxxxxxx
namespace GQ_\Enums;
use \WsdlToPhp\PackageBase\AbstractStructEnumBase;
/**
* This class stands for ExceptionLevels Enums
* Meta information extracted from the WSDL
* - nillable: true
* - type: tns:ExceptionLevels
* @package GQ_
* @subpackage Enumerations
*/
class GQ_ExceptionLevels extends AbstractStructEnumBase
{
/**
* Constant for value 'Success'
* @return string 'Success'
*/
const VALUE_SUCCESS = 'Success';
/**
* Constant for value 'Warning'
* @return string 'Warning'
*/
const VALUE_WARNING = 'Warning';
/**
* Constant for value 'Critical'
* @return string 'Critical'
*/
const VALUE_CRITICAL = 'Critical';
/**
* Return allowed values
* @uses self::VALUE_SUCCESS
* @uses self::VALUE_WARNING
* @uses self::VALUE_CRITICAL
* @return string[]
*/
public static function getValidValues()
{
return array(
self::VALUE_SUCCESS,
self::VALUE_WARNING,
self::VALUE_CRITICAL,
);
}
}
Don't be shy, don't hesitate to contact us for any subject, we'll be glad to help.
This platform is provided to give developpers and non developpers a way to easily consume SOAP Web Services or share their own SOAP Web Services with extra features powered by the platform.
© 2025 Providr.IO