_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * The name of the sender. * * @param string $val The value of the displayName * * @return EmailSender */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the domainName * Sender domain. * * @return string|null The domainName */ public function getDomainName() { if (array_key_exists("domainName", $this->_propDict)) { return $this->_propDict["domainName"]; } else { return null; } } /** * Sets the domainName * Sender domain. * * @param string $val The value of the domainName * * @return EmailSender */ public function setDomainName($val) { $this->_propDict["domainName"] = $val; return $this; } /** * Gets the emailAddress * Sender email address. * * @return string|null The emailAddress */ public function getEmailAddress() { if (array_key_exists("emailAddress", $this->_propDict)) { return $this->_propDict["emailAddress"]; } else { return null; } } /** * Sets the emailAddress * Sender email address. * * @param string $val The value of the emailAddress * * @return EmailSender */ public function setEmailAddress($val) { $this->_propDict["emailAddress"] = $val; return $this; } }