![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-customer/Model/Data/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Data; /** * Data Model implementing Address Region interface * */ class Region extends \Magento\Framework\Api\AbstractExtensibleObject implements \Magento\Customer\Api\Data\RegionInterface { /** * Get region code * * @return string */ public function getRegionCode() { return $this->_get(self::REGION_CODE); } /** * Get region * * @return string */ public function getRegion() { return $this->_get(self::REGION); } /** * Get region id * * @return int */ public function getRegionId() { return $this->_get(self::REGION_ID); } /** * Set region code * * @param string $regionCode * @return $this */ public function setRegionCode($regionCode) { return $this->setData(self::REGION_CODE, $regionCode); } /** * Set region * * @param string $region * @return $this */ public function setRegion($region) { return $this->setData(self::REGION, $region); } /** * Set region id * * @param int $regionId * @return $this */ public function setRegionId($regionId) { return $this->setData(self::REGION_ID, $regionId); } /** * {@inheritdoc} * * @return \Magento\Customer\Api\Data\RegionExtensionInterface|null */ public function getExtensionAttributes() { return $this->_getExtensionAttributes(); } /** * {@inheritdoc} * * @param \Magento\Customer\Api\Data\RegionExtensionInterface $extensionAttributes * @return $this */ public function setExtensionAttributes(\Magento\Customer\Api\Data\RegionExtensionInterface $extensionAttributes) { return $this->_setExtensionAttributes($extensionAttributes); } }