maxInactivity = $maxInactivity; } /** * @return string */ public function getMaxInactivity() { return $this->maxInactivity; } /** * @param string */ public function setReauthMethod($reauthMethod) { $this->reauthMethod = $reauthMethod; } /** * @return string */ public function getReauthMethod() { return $this->reauthMethod; } /** * @param string */ public function setSessionLength($sessionLength) { $this->sessionLength = $sessionLength; } /** * @return string */ public function getSessionLength() { return $this->sessionLength; } /** * @param bool */ public function setSessionLengthEnabled($sessionLengthEnabled) { $this->sessionLengthEnabled = $sessionLengthEnabled; } /** * @return bool */ public function getSessionLengthEnabled() { return $this->sessionLengthEnabled; } /** * @param bool */ public function setUseOidcMaxAge($useOidcMaxAge) { $this->useOidcMaxAge = $useOidcMaxAge; } /** * @return bool */ public function getUseOidcMaxAge() { return $this->useOidcMaxAge; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ReauthSettings::class, 'Google_Service_AccessContextManager_ReauthSettings');