ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * TargetedManagedAppProtection 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; /** * TargetedManagedAppProtection 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 TargetedManagedAppProtection extends ManagedAppProtection { /** * Gets the isAssigned * Indicates if the policy is deployed to any inclusion groups or not. * * @return bool|null The isAssigned */ public function getIsAssigned() { if (array_key_exists("isAssigned", $this->_propDict)) { return $this->_propDict["isAssigned"]; } else { return null; } } /** * Sets the isAssigned * Indicates if the policy is deployed to any inclusion groups or not. * * @param bool $val The isAssigned * * @return TargetedManagedAppProtection */ public function setIsAssigned($val) { $this->_propDict["isAssigned"] = boolval($val); return $this; } /** * Gets the assignments * Navigation property to list of inclusion and exclusion groups to which the policy is deployed. * * @return array|null The assignments */ public function getAssignments() { if (array_key_exists("assignments", $this->_propDict)) { return $this->_propDict["assignments"]; } else { return null; } } /** * Sets the assignments * Navigation property to list of inclusion and exclusion groups to which the policy is deployed. * * @param TargetedManagedAppPolicyAssignment[] $val The assignments * * @return TargetedManagedAppProtection */ public function setAssignments($val) { $this->_propDict["assignments"] = $val; return $this; } }
cải xoăn