PickupLocationSearchResultInterface.php 866 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. * Pickup location search result interface
  9. *
  10. * @api
  11. * @package Temando\Shipping\Api
  12. * @author Sebastian Ertner <sebastian.ertner@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 PickupLocationSearchResultInterface extends SearchResultsInterface
  17. {
  18. /**
  19. * @return \Temando\Shipping\Api\Data\Delivery\QuotePickupLocationInterface[]
  20. */
  21. public function getItems();
  22. /**
  23. * @param \Temando\Shipping\Api\Data\Delivery\QuotePickupLocationInterface[] $items
  24. * @return void
  25. */
  26. public function setItems(array $items);
  27. }