ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * DeviceAndAppManagementRoleAssignment 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; /** * DeviceAndAppManagementRoleAssignment 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 DeviceAndAppManagementRoleAssignment extends RoleAssignment { /** * Gets the members * The list of ids of role member security groups. These are IDs from Azure Active Directory. * * @return array|null The members */ public function getMembers() { if (array_key_exists("members", $this->_propDict)) { return $this->_propDict["members"]; } else { return null; } } /** * Sets the members * The list of ids of role member security groups. These are IDs from Azure Active Directory. * * @param string[] $val The members * * @return DeviceAndAppManagementRoleAssignment */ public function setMembers($val) { $this->_propDict["members"] = $val; return $this; } }
cải xoăn