AttributeGroupSearchResultsInterface.php 670 B

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