Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Group.php
Go to the documentation of this file.
1 <?php
8 
14 {
20  public function getId()
21  {
22  return $this->_get(self::ID);
23  }
24 
30  public function getCode()
31  {
32  return $this->_get(self::CODE);
33  }
34 
40  public function getTaxClassId()
41  {
42  return $this->_get(self::TAX_CLASS_ID);
43  }
44 
50  public function getTaxClassName()
51  {
52  return $this->_get(self::TAX_CLASS_NAME);
53  }
54 
61  public function setId($id)
62  {
63  return $this->setData(self::ID, $id);
64  }
65 
72  public function setCode($code)
73  {
74  return $this->setData(self::CODE, $code);
75  }
76 
83  public function setTaxClassId($taxClassId)
84  {
85  return $this->setData(self::TAX_CLASS_ID, $taxClassId);
86  }
87 
94  public function setTaxClassName($taxClassName)
95  {
96  return $this->setData(self::TAX_CLASS_NAME, $taxClassName);
97  }
98 
104  public function getExtensionAttributes()
105  {
106  return $this->_getExtensionAttributes();
107  }
108 
115  public function setExtensionAttributes(\Magento\Customer\Api\Data\GroupExtensionInterface $extensionAttributes)
116  {
117  return $this->_setExtensionAttributes($extensionAttributes);
118  }
119 }
_setExtensionAttributes(\Magento\Framework\Api\ExtensionAttributesInterface $extensionAttributes)
setTaxClassName($taxClassName)
Definition: Group.php:94
$id
Definition: fieldset.phtml:14
setExtensionAttributes(\Magento\Customer\Api\Data\GroupExtensionInterface $extensionAttributes)
Definition: Group.php:115
$extensionAttributes
Definition: payment.php:22
$code
Definition: info.phtml:12