8000 add to ... other models file · microsoft/botbuilder-python@b79fb6d · GitHub
[go: up one dir, main page]

Skip to content

Commit b79fb6d

Browse files
add to ... other models file
1 parent 455f79a commit b79fb6d

File tree

1 file changed

+8
-0
lines changed
  • libraries/botbuilder-schema/botbuilder/schema/teams

1 file changed

+8
-0
lines changed

libraries/botbuilder-schema/botbuilder/schema/teams/_models.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1478,19 +1478,27 @@ class TeamDetails(Model):
14781478
:type name: str
14791479
:param aad_group_id: Azure Active Directory (AAD) Group Id for the team.
14801480
: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
14811485
"""
14821486

14831487
_attribute_map = {
14841488
"id": {"key": "id", "type": "str"},
14851489
"name": {"key": "name", "type": "str"},
14861490
"aad_group_id": {"key": "aadGroupId", "type": "str"},
1491+
"channel_count": {"key": "channelCount", "type": "int"},
1492+
"member_count": {"key": "memberCount", "type": "int"},
14871493
}
14881494

14891495
def __init__(self, **kwargs):
14901496
super(TeamDetails, self).__init__(**kwargs)
14911497
self.id = kwargs.get("id", None)
14921498
self.name = kwargs.get("name", None)
14931499
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)
14941502

14951503

14961504
class TeamInfo(Model):

0 commit comments

Comments
 (0)
0