12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Rest\Adapter;
- use Temando\Shipping\Rest\Exception\AdapterException;
- use Temando\Shipping\Rest\Request\ItemRequestInterface;
- use Temando\Shipping\Rest\Response\DataObject\Batch;
- /**
- * The Temando Batch API interface defines the supported subset of operations
- * as available at the Temando API.
- *
- * @package Temando\Shipping\Rest
- * @author Rhodri Davies <rhodri.davies@temando.com>
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- * @link http://www.temando.com/
- */
- interface BatchApiInterface
- {
- /**
- * Read a batch from the platform.
- *
- * @param ItemRequestInterface $request
- * @return Batch
- * @throws AdapterException
- */
- public function getBatch(ItemRequestInterface $request);
- }
|