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