Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ExtensionAttribute.php
Go to the documentation of this file.
1 <?php
7 
10 {
16  public function getId()
17  {
18  return $this->_get(self::ID);
19  }
20 
26  public function getCustomerId()
27  {
28  return $this->_get(self::CUSTOMER_ID);
29  }
30 
36  public function getValue()
37  {
38  return $this->_get(self::VALUE);
39  }
40 
47  public function setId($id)
48  {
49  return $this->setData(self::ID, $id);
50  }
51 
58  public function setCustomerId($customerId)
59  {
60  return $this->setData(self::CUSTOMER_ID, $customerId);
61  }
62 
69  public function setValue($value)
70  {
71  return $this->setData(self::VALUE, $value);
72  }
73 }
$id
Definition: fieldset.phtml:14
$value
Definition: gender.phtml:16