_propDict)) { return $this->_propDict["accountName"]; } else { return null; } } /** * Sets the accountName * User account name of the logged-on user. * * @param string $val The value of the accountName * * @return LoggedOnUser */ public function setAccountName($val) { $this->_propDict["accountName"] = $val; return $this; } /** * Gets the domainName * User account domain of the logged-on user. * * @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 * User account domain of the logged-on user. * * @param string $val The value of the domainName * * @return LoggedOnUser */ public function setDomainName($val) { $this->_propDict["domainName"] = $val; return $this; } }