_propDict)) { return $this->_propDict["authenticationMethod"]; } else { return null; } } /** * Sets the authenticationMethod * Name of the authentication method. * * @param string $val The value of the authenticationMethod * * @return UserRegistrationMethodCount */ public function setAuthenticationMethod($val) { $this->_propDict["authenticationMethod"] = $val; return $this; } /** * Gets the userCount * Number of users registered. * * @return int|null The userCount */ public function getUserCount() { if (array_key_exists("userCount", $this->_propDict)) { return $this->_propDict["userCount"]; } else { return null; } } /** * Sets the userCount * Number of users registered. * * @param int $val The value of the userCount * * @return UserRegistrationMethodCount */ public function setUserCount($val) { $this->_propDict["userCount"] = $val; return $this; } }