Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
FakeRegion.php
Go to the documentation of this file.
1 <?php
7 declare(strict_types=1);
8 
10 
13 
15 {
21  public function getRegion()
22  {
23  return $this->getData(self::REGION);
24  }
25 
31  public function getRegionCode()
32  {
33  return $this->getData(self::REGION_CODE);
34  }
35 
41  public function getRegionId()
42  {
43  return $this->getData(self::REGION_ID);
44  }
45 
51  public function getExtensionAttributes()
52  {
53  return $this->_getExtensionAttributes();
54  }
55 
62  public function setExtensionAttributes(
63  \Magento\TestModuleExtensionAttributes\Api\Data\FakeRegionExtensionInterface $extensionAttributes
64  ) {
65  return $this->_setExtensionAttributes($extensionAttributes);
66  }
67 }
_setExtensionAttributes(\Magento\Framework\Api\ExtensionAttributesInterface $extensionAttributes)
setExtensionAttributes(\Magento\TestModuleExtensionAttributes\Api\Data\FakeRegionExtensionInterface $extensionAttributes)
Definition: FakeRegion.php:62