ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * UserRegistrationMethodCount 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; /** * UserRegistrationMethodCount 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 UserRegistrationMethodCount extends Entity { /** * Gets the authenticationMethod * Name of the authentication method. * * @return string|null The authenticationMethod */ public function getAuthenticationMethod() { if (array_key_exists("authenticationMethod", $this->_propDict)) { return $this->_propDict["authenticationMethod"]; } else { return null; } } /** * Sets the authenticationMethod * Name of the authentication method. * * @param string $val The value of the authenticationMethod * * @return UserRegistrationMethodCount */ public function setAuthenticationMethod($val) { $this->_propDict["authenticationMethod"] = $val; return $this; } /** * Gets the userCount * Number of users registered. * * @return int|null The userCount */ public function getUserCount() { if (array_key_exists("userCount", $this->_propDict)) { return $this->_propDict["userCount"]; } else { return null; } } /** * Sets the userCount * Number of users registered. * * @param int $val The value of the userCount * * @return UserRegistrationMethodCount */ public function setUserCount($val) { $this->_propDict["userCount"] = $val; return $this; } }
cải xoăn