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/TeamworkTagMember.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * TeamworkTagMember 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; /** * TeamworkTagMember 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 TeamworkTagMember extends Entity { /** * Gets the displayName * The member's display name. * * @return string|null The displayName */ public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * The member's display name. * * @param string $val The displayName * * @return TeamworkTagMember */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the tenantId * The ID of the tenant that the tag member is a part of. * * @return string|null The tenantId */ public function getTenantId() { if (array_key_exists("tenantId", $this->_propDict)) { return $this->_propDict["tenantId"]; } else { return null; } } /** * Sets the tenantId * The ID of the tenant that the tag member is a part of. * * @param string $val The tenantId * * @return TeamworkTagMember */ public function setTenantId($val) { $this->_propDict["tenantId"] = $val; return $this; } /** * Gets the userId * The user ID of the member. * * @return string|null The userId */ public function getUserId() { if (array_key_exists("userId", $this->_propDict)) { return $this->_propDict["userId"]; } else { return null; } } /** * Sets the userId * The user ID of the member. * * @param string $val The userId * * @return TeamworkTagMember */ public function setUserId($val) { $this->_propDict["userId"] = $val; return $this; } }
Copyright ©2021 || Defacer Indonesia