CollectionPointSearchResultInterface.php 872 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\Api\Data\Delivery;
  6. use Magento\Framework\Api\SearchResultsInterface;
  7. /**
  8. * Collection point search result interface
  9. *
  10. * @api
  11. * @package Temando\Shipping\Api
  12. * @author Christoph Aßmann <christoph.assmann@netresearch.de>
  13. * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  14. * @link https://www.temando.com/
  15. */
  16. interface CollectionPointSearchResultInterface extends SearchResultsInterface
  17. {
  18. /**
  19. * @return \Temando\Shipping\Api\Data\Delivery\QuoteCollectionPointInterface[]
  20. */
  21. public function getItems();
  22. /**
  23. * @param \Temando\Shipping\Api\Data\Delivery\QuoteCollectionPointInterface[] $items
  24. * @return void
  25. */
  26. public function setItems(array $items);
  27. }