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