1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?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);
- }
- }
|