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