_get(self::KEY_REGION_ID); } /** * @inheritDoc */ public function setId($regionId) { $this->setData(self::KEY_REGION_ID, $regionId); } /** * @inheritDoc */ public function getCode() { return $this->_get(self::KEY_REGION_CODE); } /** * @inheritDoc */ public function setCode($regionCode) { $this->setData(self::KEY_REGION_CODE, $regionCode); } /** * @inheritDoc */ public function getName() { return $this->_get(self::KEY_REGION_NAME); } /** * @inheritDoc */ public function setName($regionName) { $this->setData(self::KEY_REGION_NAME, $regionName); } /** * @inheritDoc */ public function getExtensionAttributes() { return $this->_getExtensionAttributes(); } /** * @inheritDoc */ public function setExtensionAttributes( \Magento\Directory\Api\Data\RegionInformationExtensionInterface $extensionAttributes ) { return $this->_setExtensionAttributes($extensionAttributes); } }