CustomAttributeNestedDataObjectInterface.php 428 B

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