ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * EducationOnPremisesInfo 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; /** * EducationOnPremisesInfo 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 EducationOnPremisesInfo extends Entity { /** * Gets the immutableId * Unique identifier for the user object in Active Directory. * * @return string|null The immutableId */ public function getImmutableId() { if (array_key_exists("immutableId", $this->_propDict)) { return $this->_propDict["immutableId"]; } else { return null; } } /** * Sets the immutableId * Unique identifier for the user object in Active Directory. * * @param string $val The value of the immutableId * * @return EducationOnPremisesInfo */ public function setImmutableId($val) { $this->_propDict["immutableId"] = $val; return $this; } }
cải xoăn