whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/vendor/microsoft/microsoft-graph/src/Model/Teamwork.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * Teamwork 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; /** * Teamwork 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 Teamwork extends Entity { /** * Gets the workforceIntegrations * * @return array|null The workforceIntegrations */ public function getWorkforceIntegrations() { if (array_key_exists("workforceIntegrations", $this->_propDict)) { return $this->_propDict["workforceIntegrations"]; } else { return null; } } /** * Sets the workforceIntegrations * * @param WorkforceIntegration[] $val The workforceIntegrations * * @return Teamwork */ public function setWorkforceIntegrations($val) { $this->_propDict["workforceIntegrations"] = $val; return $this; } /** * Gets the deletedTeams * The deleted team. * * @return array|null The deletedTeams */ public function getDeletedTeams() { if (array_key_exists("deletedTeams", $this->_propDict)) { return $this->_propDict["deletedTeams"]; } else { return null; } } /** * Sets the deletedTeams * The deleted team. * * @param DeletedTeam[] $val The deletedTeams * * @return Teamwork */ public function setDeletedTeams($val) { $this->_propDict["deletedTeams"] = $val; return $this; } /** * Gets the teamsAppSettings * Represents tenant-wide settings for all Teams apps in the tenant. * * @return TeamsAppSettings|null The teamsAppSettings */ public function getTeamsAppSettings() { if (array_key_exists("teamsAppSettings", $this->_propDict)) { if (is_a($this->_propDict["teamsAppSettings"], "\Microsoft\Graph\Model\TeamsAppSettings") || is_null($this->_propDict["teamsAppSettings"])) { return $this->_propDict["teamsAppSettings"]; } else { $this->_propDict["teamsAppSettings"] = new TeamsAppSettings($this->_propDict["teamsAppSettings"]); return $this->_propDict["teamsAppSettings"]; } } return null; } /** * Sets the teamsAppSettings * Represents tenant-wide settings for all Teams apps in the tenant. * * @param TeamsAppSettings $val The teamsAppSettings * * @return Teamwork */ public function setTeamsAppSettings($val) { $this->_propDict["teamsAppSettings"] = $val; return $this; } }
Copyright ©2021 || Defacer Indonesia