12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Api\Data\CollectionPoint;
- use Magento\Framework\Api\SearchResultsInterface;
- /**
- * Collection point search result interface
- *
- * @api
- * @deprecated since 1.4.0
- * @see \Temando\Shipping\Api\Data\Delivery\CollectionPointSearchResultInterface
- *
- * @package Temando\Shipping\Api
- * @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 CollectionPointSearchResultInterface extends SearchResultsInterface
- {
- /**
- * Get items
- *
- * @return \Temando\Shipping\Api\Data\CollectionPoint\QuoteCollectionPointInterface[]
- */
- public function getItems();
- /**
- * Set items
- *
- * @param \Temando\Shipping\Api\Data\CollectionPoint\QuoteCollectionPointInterface[] $items
- * @return void
- */
- public function setItems(array $items);
- }
|