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.resource_path))
 def groups(self):
     """Get groups"""
     return GroupCollection(self, ResourcePath("groups"))