@@ -1478,19 +1478,27 @@ class TeamDetails(Model):
1478
1478
:type name: str
1479
1479
:param aad_group_id: Azure Active Directory (AAD) Group Id for the team.
1480
1480
:type aad_group_id: str
1481
+ :param channel_count: The count of channels in the team.
1482
+ :type chanel_count: int
1483
+ :param member_count: The count of members in the team.
1484
+ :type member_count: int
1481
1485
"""
1482
1486
1483
1487
_attribute_map = {
1484
1488
"id" : {"key" : "id" , "type" : "str" },
1485
1489
"name" : {"key" : "name" , "type" : "str" },
1486
1490
"aad_group_id" : {"key" : "aadGroupId" , "type" : "str" },
1491
+ "channel_count" : {"key" : "channelCount" , "type" : "int" },
1492
+ "member_count" : {"key" : "memberCount" , "type" : "int" },
1487
1493
}
1488
1494
1489
1495
def __init__ (self , ** kwargs ):
1490
1496
super (TeamDetails , self ).__init__ (** kwargs )
1491
1497
self .id = kwargs .get ("id" , None )
1492
1498
self .name = kwargs .get ("name" , None )
1493
1499
self .aad_group_id = kwargs .get ("aad_group_id" , None )
1500
+ self .channel_count = kwargs .get ("channel_count" , None )
1501
+ self .member_count = kwargs .get ("member_count" , None )
1494
1502
1495
1503
1496
1504
class TeamInfo (Model ):
0 commit comments