123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\TestModuleExtensionAttributes\Model\Data;
- use Magento\TestModuleExtensionAttributes\Api\Data\FakeRegionInterface;
- use Magento\Framework\Api\AbstractExtensibleObject;
- class FakeRegion extends AbstractExtensibleObject implements FakeRegionInterface
- {
- /**
- * Get region
- *
- * @return string
- */
- public function getRegion()
- {
- return $this->_get(self::REGION);
- }
- /**
- * Get region code
- *
- * @return string
- */
- public function getRegionCode()
- {
- return $this->_get(self::REGION_CODE);
- }
- /**
- * Get region id
- *
- * @return int
- */
- public function getRegionId()
- {
- return $this->_get(self::REGION_ID);
- }
- /**
- * {@inheritdoc}
- *
- * @return \Magento\TestModuleExtensionAttributes\Api\Data\FakeRegionExtensionInterface|null
- */
- public function getExtensionAttributes()
- {
- return $this->_getExtensionAttributes();
- }
- /**
- * {@inheritdoc}
- *
- * @param \Magento\TestModuleExtensionAttributes\Api\Data\FakeRegionExtensionInterface $extensionAttributes
- * @return $this
- */
- public function setExtensionAttributes(
- \Magento\TestModuleExtensionAttributes\Api\Data\FakeRegionExtensionInterface $extensionAttributes
- ) {
- return $this->_setExtensionAttributes($extensionAttributes);
- }
- /**
- * Set region code
- *
- * @param string $regionCode
- * @return $this
- */
- public function setRegionCode($regionCode)
- {
- return $this->setData(self::REGION_CODE, $regionCode);
- }
- }
|