CaseSearchResultsInterface.php 738 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Signifyd\Api\Data;
  7. use Magento\Framework\Api\SearchResultsInterface;
  8. /**
  9. * Retrieve and set list of case entities.
  10. *
  11. * @api
  12. * @since 100.2.0
  13. */
  14. interface CaseSearchResultsInterface extends SearchResultsInterface
  15. {
  16. /**
  17. * Gets collection of case entities.
  18. *
  19. * @return \Magento\Signifyd\Api\Data\CaseInterface[]
  20. * @since 100.2.0
  21. */
  22. public function getItems();
  23. /**
  24. * Sets collection of case entities.
  25. *
  26. * @param \Magento\Signifyd\Api\Data\CaseInterface[] $items
  27. * @return $this
  28. * @since 100.2.0
  29. */
  30. public function setItems(array $items);
  31. }