_propDict)) { return $this->_propDict["address"]; } else { return null; } } /** * Sets the address * The email address of the person or entity. * * @param string $val The value of the address * * @return EmailAddress */ public function setAddress($val) { $this->_propDict["address"] = $val; return $this; } /** * Gets the name * The display name of the person or entity. * * @return string|null The name */ public function getName() { if (array_key_exists("name", $this->_propDict)) { return $this->_propDict["name"]; } else { return null; } } /** * Sets the name * The display name of the person or entity. * * @param string $val The value of the name * * @return EmailAddress */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } }