xxxxxxxxxx
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for PingResponse StructType
* @subpackage Structs
*/
class PingResponse extends AbstractStructBase
{
/**
* The PingResult
* Meta information extracted from the WSDL
* - minOccurs: 0
* - nillable: true
* @var string
*/
public $PingResult;
/**
* Constructor method for PingResponse
* @uses PingResponse::setPingResult()
* @param string $pingResult
*/
public function __construct($pingResult = null)
{
$this
->setPingResult($pingResult);
}
/**
* Get PingResult value
* An additional test has been added (isset) before returning the property value as
* this property may have been unset before, due to the fact that this property is
* removable from the request (nillable=true+minOccurs=0)
* @return string|null
*/
public function getPingResult()
{
return isset($this->PingResult) ? $this->PingResult : null;
}
/**
* Set PingResult value
* This property is removable from request (nillable=true+minOccurs=0), therefore
* if the value assigned to this property is null, it is removed from this object
* @param string $pingResult
* @return PingResponse
*/
public function setPingResult($pingResult = null)
{
if (is_null($pingResult) || (is_array($pingResult) && empty($pingResult))) {
unset($this->PingResult);
} else {
$this->PingResult = $pingResult;
}
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