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