xxxxxxxxxx
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for GetDocumentStatusBatch StructType
* @subpackage Structs
*/
class GetDocumentStatusBatch extends AbstractStructBase
{
/**
* The sessionID
* Meta information extracted from the WSDL
* - minOccurs: 0
* - nillable: true
* @var string
*/
public $sessionID;
/**
* The uuidList
* Meta information extracted from the WSDL
* - minOccurs: 0
* - nillable: true
* @var ArrayOfstring
*/
public $uuidList;
/**
* The paramList
* Meta information extracted from the WSDL
* - minOccurs: 0
* - nillable: true
* @var ArrayOfstring
*/
public $paramList;
/**
* Constructor method for GetDocumentStatusBatch
* @uses GetDocumentStatusBatch::setSessionID()
* @uses GetDocumentStatusBatch::setUuidList()
* @uses GetDocumentStatusBatch::setParamList()
* @param string $sessionID
* @param ArrayOfstring $uuidList
* @param ArrayOfstring $paramList
*/
public function __construct($sessionID = null, ArrayOfstring $uuidList = null, ArrayOfstring $paramList = null)
{
$this
->setSessionID($sessionID)
->setUuidList($uuidList)
->setParamList($paramList);
}
/**
* Get sessionID 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 getSessionID()
{
return isset($this->sessionID) ? $this->sessionID : null;
}
/**
* Set sessionID 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 $sessionID
* @return GetDocumentStatusBatch
*/
public function setSessionID($sessionID = null)
{
if (is_null($sessionID) || (is_array($sessionID) && empty($sessionID))) {
unset($this->sessionID);
} else {
$this->sessionID = $sessionID;
}
return $this;
}
/**
* Get uuidList 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 ArrayOfstring|null
*/
public function getUuidList()
{
return isset($this->uuidList) ? $this->uuidList : null;
}
/**
* Set uuidList 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 ArrayOfstring $uuidList
* @return GetDocumentStatusBatch
*/
public function setUuidList(ArrayOfstring $uuidList = null)
{
if (is_null($uuidList) || (is_array($uuidList) && empty($uuidList))) {
unset($this->uuidList);
} else {
$this->uuidList = $uuidList;
}
return $this;
}
/**
* Get paramList 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 ArrayOfstring|null
*/
public function getParamList()
{
return isset($this->paramList) ? $this->paramList : null;
}
/**
* Set paramList 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 ArrayOfstring $paramList
* @return GetDocumentStatusBatch
*/
public function setParamList(ArrayOfstring $paramList = null)
{
if (is_null($paramList) || (is_array($paramList) && empty($paramList))) {
unset($this->paramList);
} else {
$this->paramList = $paramList;
}
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