_propDict)) { return $this->_propDict["associatedTeams"]; } else { return null; } } /** * Sets the associatedTeams * The list of associatedTeamInfo objects that a user is associated with. * * @param AssociatedTeamInfo[] $val The associatedTeams * * @return UserTeamwork */ public function setAssociatedTeams($val) { $this->_propDict["associatedTeams"] = $val; return $this; } /** * Gets the installedApps * The apps installed in the personal scope of this user. * * @return array|null The installedApps */ public function getInstalledApps() { if (array_key_exists("installedApps", $this->_propDict)) { return $this->_propDict["installedApps"]; } else { return null; } } /** * Sets the installedApps * The apps installed in the personal scope of this user. * * @param UserScopeTeamsAppInstallation[] $val The installedApps * * @return UserTeamwork */ public function setInstalledApps($val) { $this->_propDict["installedApps"] = $val; return $this; } }