_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * The name of the team. * * @param string $val The displayName * * @return TeamInfo */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the tenantId * The ID of the Microsoft Entra tenant. * * @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 Microsoft Entra tenant. * * @param string $val The tenantId * * @return TeamInfo */ public function setTenantId($val) { $this->_propDict["tenantId"] = $val; return $this; } /** * Gets the team * * @return Team|null The team */ public function getTeam() { if (array_key_exists("team", $this->_propDict)) { if (is_a($this->_propDict["team"], "\Microsoft\Graph\Model\Team") || is_null($this->_propDict["team"])) { return $this->_propDict["team"]; } else { $this->_propDict["team"] = new Team($this->_propDict["team"]); return $this->_propDict["team"]; } } return null; } /** * Sets the team * * @param Team $val The team * * @return TeamInfo */ public function setTeam($val) { $this->_propDict["team"] = $val; return $this; } }