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/TeamworkTag.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * TeamworkTag 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; /** * TeamworkTag 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 TeamworkTag extends Entity { /** * Gets the description * The description of the tag as it appears to the user in Microsoft Teams. A teamworkTag can't have more than 200 teamworkTagMembers. * * @return string|null The description */ public function getDescription() { if (array_key_exists("description", $this->_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * The description of the tag as it appears to the user in Microsoft Teams. A teamworkTag can't have more than 200 teamworkTagMembers. * * @param string $val The description * * @return TeamworkTag */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the displayName * The name of the tag as it appears to the user in Microsoft Teams. * * @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 name of the tag as it appears to the user in Microsoft Teams. * * @param string $val The displayName * * @return TeamworkTag */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the memberCount * The number of users assigned to the tag. * * @return int|null The memberCount */ public function getMemberCount() { if (array_key_exists("memberCount", $this->_propDict)) { return $this->_propDict["memberCount"]; } else { return null; } } /** * Sets the memberCount * The number of users assigned to the tag. * * @param int $val The memberCount * * @return TeamworkTag */ public function setMemberCount($val) { $this->_propDict["memberCount"] = intval($val); return $this; } /** * Gets the tagType * The type of the tag. Default is standard. * * @return TeamworkTagType|null The tagType */ public function getTagType() { if (array_key_exists("tagType", $this->_propDict)) { if (is_a($this->_propDict["tagType"], "\Microsoft\Graph\Model\TeamworkTagType") || is_null($this->_propDict["tagType"])) { return $this->_propDict["tagType"]; } else { $this->_propDict["tagType"] = new TeamworkTagType($this->_propDict["tagType"]); return $this->_propDict["tagType"]; } } return null; } /** * Sets the tagType * The type of the tag. Default is standard. * * @param TeamworkTagType $val The tagType * * @return TeamworkTag */ public function setTagType($val) { $this->_propDict["tagType"] = $val; return $this; } /** * Gets the teamId * ID of the team in which the tag is defined. * * @return string|null The teamId */ public function getTeamId() { if (array_key_exists("teamId", $this->_propDict)) { return $this->_propDict["teamId"]; } else { return null; } } /** * Sets the teamId * ID of the team in which the tag is defined. * * @param string $val The teamId * * @return TeamworkTag */ public function setTeamId($val) { $this->_propDict["teamId"] = $val; return $this; } /** * Gets the members * Users assigned to the tag. * * @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 * Users assigned to the tag. * * @param TeamworkTagMember[] $val The members * * @return TeamworkTag */ public function setMembers($val) { $this->_propDict["members"] = $val; return $this; } }
Copyright ©2021 || Defacer Indonesia