BookmarkSearchResultsInterface.php 641 B

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