ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * UserSignInInsight 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; /** * UserSignInInsight 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 UserSignInInsight extends GovernanceInsight { /** * Gets the lastSignInDateTime * Indicates when the user last signed in. * * @return \DateTime|null The lastSignInDateTime */ public function getLastSignInDateTime() { if (array_key_exists("lastSignInDateTime", $this->_propDict)) { if (is_a($this->_propDict["lastSignInDateTime"], "\DateTime") || is_null($this->_propDict["lastSignInDateTime"])) { return $this->_propDict["lastSignInDateTime"]; } else { $this->_propDict["lastSignInDateTime"] = new \DateTime($this->_propDict["lastSignInDateTime"]); return $this->_propDict["lastSignInDateTime"]; } } return null; } /** * Sets the lastSignInDateTime * Indicates when the user last signed in. * * @param \DateTime $val The lastSignInDateTime * * @return UserSignInInsight */ public function setLastSignInDateTime($val) { $this->_propDict["lastSignInDateTime"] = $val; return $this; } }
cải xoăn