ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * DeleteUserFromSharedAppleDeviceActionResult 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; /** * DeleteUserFromSharedAppleDeviceActionResult 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 DeleteUserFromSharedAppleDeviceActionResult extends DeviceActionResult { /** * Gets the userPrincipalName * User principal name of the user to be deleted * * @return string|null The userPrincipalName */ public function getUserPrincipalName() { if (array_key_exists("userPrincipalName", $this->_propDict)) { return $this->_propDict["userPrincipalName"]; } else { return null; } } /** * Sets the userPrincipalName * User principal name of the user to be deleted * * @param string $val The value of the userPrincipalName * * @return DeleteUserFromSharedAppleDeviceActionResult */ public function setUserPrincipalName($val) { $this->_propDict["userPrincipalName"] = $val; return $this; } }
cải xoăn