xxxxxxxxxx
use \WsdlToPhp\PackageBase\AbstractStructEnumBase;
/**
* This class stands for statusCode Enums
* @subpackage Enumerations
*/
class StatusCode extends AbstractStructEnumBase
{
/**
* Constant for value 'OK'
* @return string 'OK'
*/
const VALUE_OK = 'OK';
/**
* Constant for value 'ERROR'
* @return string 'ERROR'
*/
const VALUE_ERROR = 'ERROR';
/**
* Return allowed values
* @uses self::VALUE_OK
* @uses self::VALUE_ERROR
* @return string[]
*/
public static function getValidValues()
{
return array(
self::VALUE_OK,
self::VALUE_ERROR,
);
}
}
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