ItemInterface.php 574 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\TestModuleMSC\Api\Data;
  7. interface ItemInterface extends \Magento\Framework\Api\ExtensibleDataInterface
  8. {
  9. /**
  10. * @return int
  11. */
  12. public function getItemId();
  13. /**
  14. * @param int $itemId
  15. * @return $this
  16. */
  17. public function setItemId($itemId);
  18. /**
  19. * @return string
  20. */
  21. public function getName();
  22. /**
  23. * @param string $name
  24. * @return $this
  25. */
  26. public function setName($name);
  27. }