_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); } }