xxxxxxxxxx
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for manifest Structure
* Meta information extracted from the WSDL
* - type: tns:manifest
* @subpackage Structs
*/
class Manifest extends AbstractStructBase
{
/**
* The ManifestRequestType
* Meta information extracted from the WSDL
* - minOccurs: 0
* @var ManifestRequest
*/
public $ManifestRequestType;
/**
* Constructor method for manifest
* @uses Manifest::setManifestRequestType()
* @param ManifestRequest $manifestRequestType
*/
public function __construct(ManifestRequest $manifestRequestType = null)
{
$this
->setManifestRequestType($manifestRequestType);
}
/**
* Get ManifestRequestType value
* @return ManifestRequest|null
*/
public function getManifestRequestType()
{
return $this->ManifestRequestType;
}
/**
* Set ManifestRequestType value
* @param ManifestRequest $manifestRequestType
* @return Manifest
*/
public function setManifestRequestType(ManifestRequest $manifestRequestType = null)
{
$this->ManifestRequestType = $manifestRequestType;
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