def joinedTeams(self):
     """Get the teams in Microsoft Teams that the user is a direct member of."""
     if self.is_property_available('joinedTeams'):
         return self.properties['joinedTeams']
     else:
         return GroupCollection(
             self.context, ResourcePath("joinedTeams", self.resourcePath))
 def groups(self):
     """Get groups"""
     return GroupCollection(self, ResourcePathEntity(self, None, "groups"))
 def groups(self):
     """Get groups"""
     return GroupCollection(self, ResourcePath("groups"))