_propDict)) { if (is_a($this->_propDict["allowedWeakAlgorithms"], "\Microsoft\Graph\Model\WeakAlgorithms") || is_null($this->_propDict["allowedWeakAlgorithms"])) { return $this->_propDict["allowedWeakAlgorithms"]; } else { $this->_propDict["allowedWeakAlgorithms"] = new WeakAlgorithms($this->_propDict["allowedWeakAlgorithms"]); return $this->_propDict["allowedWeakAlgorithms"]; } } return null; } /** * Sets the allowedWeakAlgorithms * Specifies which weak algorithms are allowed. The possible values are: rsaSha1, unknownFutureValue. * * @param WeakAlgorithms $val The value to assign to the allowedWeakAlgorithms * * @return RequestSignatureVerification The RequestSignatureVerification */ public function setAllowedWeakAlgorithms($val) { $this->_propDict["allowedWeakAlgorithms"] = $val; return $this; } /** * Gets the isSignedRequestRequired * Specifies whether signed authentication requests for this application should be required. * * @return bool|null The isSignedRequestRequired */ public function getIsSignedRequestRequired() { if (array_key_exists("isSignedRequestRequired", $this->_propDict)) { return $this->_propDict["isSignedRequestRequired"]; } else { return null; } } /** * Sets the isSignedRequestRequired * Specifies whether signed authentication requests for this application should be required. * * @param bool $val The value of the isSignedRequestRequired * * @return RequestSignatureVerification */ public function setIsSignedRequestRequired($val) { $this->_propDict["isSignedRequestRequired"] = $val; return $this; } }