<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
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
            -&gt;setCancelRequestType($cancelRequestType);
    }
    /**
     * Get CancelRequestType value
     * @return CancelRequest|null
     */
    public function getCancelRequestType()
    {
        return $this-&gt;CancelRequestType;
    }
    /**
     * Set CancelRequestType value
     * @param CancelRequest $cancelRequestType
     * @return Cancel
     */
    public function setCancelRequestType(CancelRequest $cancelRequestType = null)
    {
        $this-&gt;CancelRequestType = $cancelRequestType;
        return $this;
    }
}
</pre></body></html>