1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Webservice\Processor\OrderOperation;
- use Magento\Framework\Exception\LocalizedException;
- use Magento\Quote\Model\Quote\Address\RateRequest;
- use Temando\Shipping\Api\Data\Order\ShippingExperienceInterface;
- use Temando\Shipping\Model\OrderInterface;
- use Temando\Shipping\Webservice\Response\Type\QualificationResponseType;
- /**
- * Temando Rates Response Processor Interface
- *
- * @package Temando\Shipping\Webservice
- * @author Christoph Aßmann <christoph.assmann@netresearch.de>
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- * @link http://www.temando.com/
- */
- interface RatesProcessorInterface
- {
- /**
- * @param RateRequest $rateRequest
- * @param OrderInterface $requestType
- * @param QualificationResponseType $responseType
- * @return ShippingExperienceInterface[]
- * @throws LocalizedException
- */
- public function postProcess(
- RateRequest $rateRequest,
- OrderInterface $requestType,
- QualificationResponseType $responseType
- );
- }
|