xxxxxxxxxx
namespace Structs;
use \WsdlToPhp\PackageBase\AbstractStructBase;
/**
* This class stands for importDeliveryBusinessEventsV1 Structs
* Meta information extracted from the WSDL
* - type: tns:importDeliveryBusinessEventsV1
* @subpackage Structs
*/
class ImportDeliveryBusinessEventsV1 extends AbstractStructBase
{
/**
* The xmlDPDParcelBusinessEventV1
* Meta information extracted from the WSDL
* - minOccurs: 0
* @var string
*/
public $xmlDPDParcelBusinessEventV1;
/**
* The authDataV1
* Meta information extracted from the WSDL
* - minOccurs: 0
* @var \Structs\AuthDataV1
*/
public $authDataV1;
/**
* Constructor method for importDeliveryBusinessEventsV1
* @uses ImportDeliveryBusinessEventsV1::setXmlDPDParcelBusinessEventV1()
* @uses ImportDeliveryBusinessEventsV1::setAuthDataV1()
* @param string $xmlDPDParcelBusinessEventV1
* @param \Structs\AuthDataV1 $authDataV1
*/
public function __construct($xmlDPDParcelBusinessEventV1 = null, \Structs\AuthDataV1 $authDataV1 = null)
{
$this
->setXmlDPDParcelBusinessEventV1($xmlDPDParcelBusinessEventV1)
->setAuthDataV1($authDataV1);
}
/**
* Get xmlDPDParcelBusinessEventV1 value
* @return string|null
*/
public function getXmlDPDParcelBusinessEventV1()
{
return $this->xmlDPDParcelBusinessEventV1;
}
/**
* Set xmlDPDParcelBusinessEventV1 value
* @param string $xmlDPDParcelBusinessEventV1
* @return \Structs\ImportDeliveryBusinessEventsV1
*/
public function setXmlDPDParcelBusinessEventV1($xmlDPDParcelBusinessEventV1 = null)
{
// validation for constraint: string
if (!is_null($xmlDPDParcelBusinessEventV1) && !is_string($xmlDPDParcelBusinessEventV1)) {
throw new \InvalidArgumentException(sprintf('Invalid value %s, please provide a string, %s given', var_export($xmlDPDParcelBusinessEventV1, true), gettype($xmlDPDParcelBusinessEventV1)), __LINE__);
}
$this->xmlDPDParcelBusinessEventV1 = $xmlDPDParcelBusinessEventV1;
return $this;
}
/**
* Get authDataV1 value
* @return \Structs\AuthDataV1|null
*/
public function getAuthDataV1()
{
return $this->authDataV1;
}
/**
* Set authDataV1 value
* @param \Structs\AuthDataV1 $authDataV1
* @return \Structs\ImportDeliveryBusinessEventsV1
*/
public function setAuthDataV1(\Structs\AuthDataV1 $authDataV1 = null)
{
$this->authDataV1 = $authDataV1;
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