File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/microsoft/microsoft-graph/src/Model/RoleAssignment.php
Back
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * RoleAssignment File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright © Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @version GIT: 1.4.0 * @link https://graph.microsoft.io/ */ namespace Microsoft\Graph\Model; /** * RoleAssignment class * * @category Model * @package Microsoft.Graph * @copyright © Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @version Release: 1.4.0 * @link https://graph.microsoft.io/ */ class RoleAssignment extends Entity { /** * Gets the displayName * The display or friendly name of the role Assignment. * * @return string The displayName */ public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * The display or friendly name of the role Assignment. * * @param string $val The displayName * * @return RoleAssignment */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the description * Description of the Role Assignment. * * @return string The description */ public function getDescription() { if (array_key_exists("description", $this->_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * Description of the Role Assignment. * * @param string $val The description * * @return RoleAssignment */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the resourceScopes * List of ids of role scope member security groups. These are IDs from Azure Active Directory. * * @return string The resourceScopes */ public function getResourceScopes() { if (array_key_exists("resourceScopes", $this->_propDict)) { return $this->_propDict["resourceScopes"]; } else { return null; } } /** * Sets the resourceScopes * List of ids of role scope member security groups. These are IDs from Azure Active Directory. * * @param string $val The resourceScopes * * @return RoleAssignment */ public function setResourceScopes($val) { $this->_propDict["resourceScopes"] = $val; return $this; } /** * Gets the roleDefinition * Role definition this assignment is part of. * * @return RoleDefinition The roleDefinition */ public function getRoleDefinition() { if (array_key_exists("roleDefinition", $this->_propDict)) { if (is_a($this->_propDict["roleDefinition"], "Microsoft\Graph\Model\RoleDefinition")) { return $this->_propDict["roleDefinition"]; } else { $this->_propDict["roleDefinition"] = new RoleDefinition($this->_propDict["roleDefinition"]); return $this->_propDict["roleDefinition"]; } } return null; } /** * Sets the roleDefinition * Role definition this assignment is part of. * * @param RoleDefinition $val The roleDefinition * * @return RoleAssignment */ public function setRoleDefinition($val) { $this->_propDict["roleDefinition"] = $val; return $this; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings