<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 cancelResponse Structure
 * Meta information extracted from the WSDL
 * - type: tns:cancelResponse
 * @subpackage Structs
 */
class CancelResponse extends AbstractStructBase
{
    /**
     * The CancelResponseType
     * Meta information extracted from the WSDL
     * - minOccurs: 0
     * @var CancelResponseType
     */
    public $CancelResponseType;
    /**
     * Constructor method for cancelResponse
     * @uses CancelResponse::setCancelResponseType()
     * @param CancelResponseType $cancelResponseType
     */
    public function __construct(CancelResponseType $cancelResponseType = null)
    {
        $this
            -&gt;setCancelResponseType($cancelResponseType);
    }
    /**
     * Get CancelResponseType value
     * @return CancelResponseType|null
     */
    public function getCancelResponseType()
    {
        return $this-&gt;CancelResponseType;
    }
    /**
     * Set CancelResponseType value
     * @param CancelResponseType $cancelResponseType
     * @return CancelResponse
     */
    public function setCancelResponseType(CancelResponseType $cancelResponseType = null)
    {
        $this-&gt;CancelResponseType = $cancelResponseType;
        return $this;
    }
}
</pre></body></html>