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