1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\TestModuleMSC\Model\Data;
- use Magento\TestModuleMSC\Api\Data\CustomAttributeNestedDataObjectInterface;
- /**
- * Class CustomAttributeNestedDataObject
- *
- * @method \Magento\TestModuleMSC\Api\Data\CustomAttributeNestedDataObjectExtensionInterface getExtensionAttributes()
- */
- class CustomAttributeNestedDataObject extends \Magento\Framework\Model\AbstractExtensibleModel implements
- CustomAttributeNestedDataObjectInterface
- {
- /**
- * @return string
- */
- public function getName()
- {
- return $this->_data['name'];
- }
- /**
- * @param string $name
- * @return $this
- */
- public function setName($name)
- {
- return $this->setData('name', $name);
- }
- }
|