xxxxxxxxxx
namespace Structs;
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for generateProtocolXV2Response Structs
* Meta information extracted from the WSDL
* - type: tns:generateProtocolXV2Response
* @subpackage Structs
*/
class GenerateProtocolXV2Response extends AbstractStructBase
{
/**
* The return
* Meta information extracted from the WSDL
* - minOccurs: 0
* @var string
*/
public $return;
/**
* Constructor method for generateProtocolXV2Response
* @uses GenerateProtocolXV2Response::setReturn()
* @param string $return
*/
public function __construct($return = null)
{
$this
->setReturn($return);
}
/**
* Get return value
* @return string|null
*/
public function getReturn()
{
return $this->return;
}
/**
* Set return value
* @param string $return
* @return \Structs\GenerateProtocolXV2Response
*/
public function setReturn($return = null)
{
// validation for constraint: string
if (!is_null($return) && !is_string($return)) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($return, true), gettype($return)), __LINE__);
}
$this->return = $return;
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