xxxxxxxxxx
namespace GlsApi\Struct;
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for NewOperationResponse Struct
* @subpackage Structs
*/
class NewOperationResponse extends AbstractStructBase
{
/**
* The out
* @var string
*/
public $out;
/**
* Constructor method for NewOperationResponse
* @uses NewOperationResponse::setOut()
* @param string $out
*/
public function __construct($out = null)
{
$this
->setOut($out);
}
/**
* Get out value
* @return string|null
*/
public function getOut()
{
return $this->out;
}
/**
* Set out value
* @param string $out
* @return \GlsApi\Struct\NewOperationResponse
*/
public function setOut($out = null)
{
// validation for constraint: string
if (!is_null($out) && !is_string($out)) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($out, true), gettype($out)), __LINE__);
}
$this->out = $out;
return $this;
}
}
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