_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * Refers to the Name of the conditional access policy (example: 'Require MFA for Salesforce'). * * @param string $val The value of the displayName * * @return AppliedConditionalAccessPolicy */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the enforcedGrantControls * Refers to the grant controls enforced by the conditional access policy (example: 'Require multifactor authentication'). * * @return string|null The enforcedGrantControls */ public function getEnforcedGrantControls() { if (array_key_exists("enforcedGrantControls", $this->_propDict)) { return $this->_propDict["enforcedGrantControls"]; } else { return null; } } /** * Sets the enforcedGrantControls * Refers to the grant controls enforced by the conditional access policy (example: 'Require multifactor authentication'). * * @param string $val The value of the enforcedGrantControls * * @return AppliedConditionalAccessPolicy */ public function setEnforcedGrantControls($val) { $this->_propDict["enforcedGrantControls"] = $val; return $this; } /** * Gets the enforcedSessionControls * Refers to the session controls enforced by the conditional access policy (example: 'Require app enforced controls'). * * @return string|null The enforcedSessionControls */ public function getEnforcedSessionControls() { if (array_key_exists("enforcedSessionControls", $this->_propDict)) { return $this->_propDict["enforcedSessionControls"]; } else { return null; } } /** * Sets the enforcedSessionControls * Refers to the session controls enforced by the conditional access policy (example: 'Require app enforced controls'). * * @param string $val The value of the enforcedSessionControls * * @return AppliedConditionalAccessPolicy */ public function setEnforcedSessionControls($val) { $this->_propDict["enforcedSessionControls"] = $val; return $this; } /** * Gets the id * An identifier of the conditional access policy. * * @return string|null The id */ public function getId() { if (array_key_exists("id", $this->_propDict)) { return $this->_propDict["id"]; } else { return null; } } /** * Sets the id * An identifier of the conditional access policy. * * @param string $val The value of the id * * @return AppliedConditionalAccessPolicy */ public function setId($val) { $this->_propDict["id"] = $val; return $this; } /** * Gets the result * Indicates the result of the CA policy that was triggered. Possible values are: success, failure, notApplied (Policy isn't applied because policy conditions weren't met),notEnabled (This is due to the policy in disabled state), unknown, unknownFutureValue. * * @return AppliedConditionalAccessPolicyResult|null The result */ public function getResult() { if (array_key_exists("result", $this->_propDict)) { if (is_a($this->_propDict["result"], "\Microsoft\Graph\Model\AppliedConditionalAccessPolicyResult") || is_null($this->_propDict["result"])) { return $this->_propDict["result"]; } else { $this->_propDict["result"] = new AppliedConditionalAccessPolicyResult($this->_propDict["result"]); return $this->_propDict["result"]; } } return null; } /** * Sets the result * Indicates the result of the CA policy that was triggered. Possible values are: success, failure, notApplied (Policy isn't applied because policy conditions weren't met),notEnabled (This is due to the policy in disabled state), unknown, unknownFutureValue. * * @param AppliedConditionalAccessPolicyResult $val The value to assign to the result * * @return AppliedConditionalAccessPolicy The AppliedConditionalAccessPolicy */ public function setResult($val) { $this->_propDict["result"] = $val; return $this; } }