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