xxxxxxxxxx
use \WsdlToPhp\PackageBase\AbstractStructEnumBase;
/**
* This class stands for costStatus Enums
* @subpackage Enumerations
*/
class CostStatus extends AbstractStructEnumBase
{
/**
* Constant for value 'NOT_AVAILABLE'
* @return string 'NOT_AVAILABLE'
*/
const VALUE_NOT_AVAILABLE = 'NOT_AVAILABLE';
/**
* Constant for value 'NOT_INVOICED'
* @return string 'NOT_INVOICED'
*/
const VALUE_NOT_INVOICED = 'NOT_INVOICED';
/**
* Constant for value 'PRELIMINARY'
* @return string 'PRELIMINARY'
*/
const VALUE_PRELIMINARY = 'PRELIMINARY';
/**
* Constant for value 'FINAL'
* @return string 'FINAL'
*/
const VALUE_FINAL = 'FINAL';
/**
* Return allowed values
* @uses self::VALUE_NOT_AVAILABLE
* @uses self::VALUE_NOT_INVOICED
* @uses self::VALUE_PRELIMINARY
* @uses self::VALUE_FINAL
* @return string[]
*/
public static function getValidValues()
{
return array(
self::VALUE_NOT_AVAILABLE,
self::VALUE_NOT_INVOICED,
self::VALUE_PRELIMINARY,
self::VALUE_FINAL,
);
}
}
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