CustomAttributeDataObjectInterface.php 448 B

12345678910111213141516171819202122
  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 CustomAttributeDataObjectInterface extends \Magento\Framework\Api\ExtensibleDataInterface
  8. {
  9. const NAME = 'name';
  10. /**
  11. * @return string
  12. */
  13. public function getName();
  14. /**
  15. * @param string $name
  16. * @return $this
  17. */
  18. public function setName($name);
  19. }