_propDict)) { return $this->_propDict["isEnabled"]; } else { return null; } } /** * Sets the isEnabled * Indicates whether the idle session sign-out policy is enabled. * * @param bool $val The value of the isEnabled * * @return IdleSessionSignOut */ public function setIsEnabled($val) { $this->_propDict["isEnabled"] = $val; return $this; } /** * Gets the signOutAfterInSeconds * Number of seconds of inactivity after which a user is signed out. * * @return int|null The signOutAfterInSeconds */ public function getSignOutAfterInSeconds() { if (array_key_exists("signOutAfterInSeconds", $this->_propDict)) { return $this->_propDict["signOutAfterInSeconds"]; } else { return null; } } /** * Sets the signOutAfterInSeconds * Number of seconds of inactivity after which a user is signed out. * * @param int $val The value of the signOutAfterInSeconds * * @return IdleSessionSignOut */ public function setSignOutAfterInSeconds($val) { $this->_propDict["signOutAfterInSeconds"] = $val; return $this; } /** * Gets the warnAfterInSeconds * Number of seconds of inactivity after which a user is notified that they'll be signed out. * * @return int|null The warnAfterInSeconds */ public function getWarnAfterInSeconds() { if (array_key_exists("warnAfterInSeconds", $this->_propDict)) { return $this->_propDict["warnAfterInSeconds"]; } else { return null; } } /** * Sets the warnAfterInSeconds * Number of seconds of inactivity after which a user is notified that they'll be signed out. * * @param int $val The value of the warnAfterInSeconds * * @return IdleSessionSignOut */ public function setWarnAfterInSeconds($val) { $this->_propDict["warnAfterInSeconds"] = $val; return $this; } }