TaxRateSearchResultsInterface.php 640 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Tax\Api\Data;
  8. use Magento\Framework\Api\SearchResultsInterface;
  9. /**
  10. * Interface for tax rate search results.
  11. * @api
  12. * @since 100.0.2
  13. */
  14. interface TaxRateSearchResultsInterface extends SearchResultsInterface
  15. {
  16. /**
  17. * Get items
  18. *
  19. * @return \Magento\Tax\Api\Data\TaxRateInterface[]
  20. */
  21. public function getItems();
  22. /**
  23. * Set items
  24. *
  25. * @param \Magento\Tax\Api\Data\TaxRateInterface[] $items
  26. * @return $this
  27. */
  28. public function setItems(array $items);
  29. }