_propDict)) { return $this->_propDict["claimValue"]; } else { return null; } } /** * Sets the claimValue * The value of the authentication context claim. * * @param string $val The claimValue * * @return UnifiedRoleManagementPolicyAuthenticationContextRule */ public function setClaimValue($val) { $this->_propDict["claimValue"] = $val; return $this; } /** * Gets the isEnabled * Determines whether this rule is enabled. * * @return bool|null The isEnabled */ public function getIsEnabled() { if (array_key_exists("isEnabled", $this->_propDict)) { return $this->_propDict["isEnabled"]; } else { return null; } } /** * Sets the isEnabled * Determines whether this rule is enabled. * * @param bool $val The isEnabled * * @return UnifiedRoleManagementPolicyAuthenticationContextRule */ public function setIsEnabled($val) { $this->_propDict["isEnabled"] = boolval($val); return $this; } }