_propDict)) { if (is_a($this->_propDict["displayAppInformationRequiredState"], "\Microsoft\Graph\Model\AuthenticationMethodFeatureConfiguration") || is_null($this->_propDict["displayAppInformationRequiredState"])) { return $this->_propDict["displayAppInformationRequiredState"]; } else { $this->_propDict["displayAppInformationRequiredState"] = new AuthenticationMethodFeatureConfiguration($this->_propDict["displayAppInformationRequiredState"]); return $this->_propDict["displayAppInformationRequiredState"]; } } return null; } /** * Sets the displayAppInformationRequiredState * Determines whether the user's Authenticator app shows them the client app they're signing into. * * @param AuthenticationMethodFeatureConfiguration $val The value to assign to the displayAppInformationRequiredState * * @return MicrosoftAuthenticatorFeatureSettings The MicrosoftAuthenticatorFeatureSettings */ public function setDisplayAppInformationRequiredState($val) { $this->_propDict["displayAppInformationRequiredState"] = $val; return $this; } /** * Gets the displayLocationInformationRequiredState * Determines whether the user's Authenticator app shows them the geographic location of where the authentication request originated from. * * @return AuthenticationMethodFeatureConfiguration|null The displayLocationInformationRequiredState */ public function getDisplayLocationInformationRequiredState() { if (array_key_exists("displayLocationInformationRequiredState", $this->_propDict)) { if (is_a($this->_propDict["displayLocationInformationRequiredState"], "\Microsoft\Graph\Model\AuthenticationMethodFeatureConfiguration") || is_null($this->_propDict["displayLocationInformationRequiredState"])) { return $this->_propDict["displayLocationInformationRequiredState"]; } else { $this->_propDict["displayLocationInformationRequiredState"] = new AuthenticationMethodFeatureConfiguration($this->_propDict["displayLocationInformationRequiredState"]); return $this->_propDict["displayLocationInformationRequiredState"]; } } return null; } /** * Sets the displayLocationInformationRequiredState * Determines whether the user's Authenticator app shows them the geographic location of where the authentication request originated from. * * @param AuthenticationMethodFeatureConfiguration $val The value to assign to the displayLocationInformationRequiredState * * @return MicrosoftAuthenticatorFeatureSettings The MicrosoftAuthenticatorFeatureSettings */ public function setDisplayLocationInformationRequiredState($val) { $this->_propDict["displayLocationInformationRequiredState"] = $val; return $this; } }