ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * SmsAuthenticationMethodTarget File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ namespace Microsoft\Graph\Model; /** * SmsAuthenticationMethodTarget class * * @category Model * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ class SmsAuthenticationMethodTarget extends AuthenticationMethodTarget { /** * Gets the isUsableForSignIn * Determines if users can use this authentication method to sign in to Microsoft Entra ID. true if users can use this method for primary authentication, otherwise false. * * @return bool|null The isUsableForSignIn */ public function getIsUsableForSignIn() { if (array_key_exists("isUsableForSignIn", $this->_propDict)) { return $this->_propDict["isUsableForSignIn"]; } else { return null; } } /** * Sets the isUsableForSignIn * Determines if users can use this authentication method to sign in to Microsoft Entra ID. true if users can use this method for primary authentication, otherwise false. * * @param bool $val The isUsableForSignIn * * @return SmsAuthenticationMethodTarget */ public function setIsUsableForSignIn($val) { $this->_propDict["isUsableForSignIn"] = boolval($val); return $this; } }
cải xoăn