<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php

namespace Taxy\TaxyService;

use \WsdlToPhp\PackageBase\AbstractSoapClientBase;

/**
 * This class stands for PRINT TaxyService
 * @package Taxy
 * @subpackage Services
 */
class TaxyPRINT extends AbstractSoapClientBase
{
    /**
     * Method to call the operation originally named PRINT
     * @uses AbstractSoapClientBase::getSoapClient()
     * @uses AbstractSoapClientBase::setResult()
     * @uses AbstractSoapClientBase::getResult()
     * @uses AbstractSoapClientBase::saveLastError()
     * @param \Taxy\TaxyStruct\TaxyPRINT $parameters
     * @return \Taxy\TaxyStruct\TaxyPRINTResponse|bool
     */
    public function _PRINT(\Taxy\TaxyStruct\TaxyPRINT $parameters)
    {
        try {
            $this-&gt;setResult($this-&gt;getSoapClient()-&gt;PRINT($parameters));
            return $this-&gt;getResult();
        } catch (\SoapFault $soapFault) {
            $this-&gt;saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
    /**
     * Returns the result
     * @see AbstractSoapClientBase::getResult()
     * @return \Taxy\TaxyStruct\TaxyPRINTResponse
     */
    public function getResult()
    {
        return parent::getResult();
    }
}
</pre></body></html>