8000 add member_count and channel_count to TeamDetails · LucaSavio/botbuilder-python@b8b8d81 · GitHub
[go: up one dir, main page]

Skip to content

Commit b8b8d81

Browse files
add member_count and channel_count to TeamDetails
1 parent e141d08 commit b8b8d81

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1736,21 +1736,29 @@ class TeamDetails(Model):
17361736
:type name: str
17371737
:param aad_group_id: Azure Active Directory (AAD) Group Id for the team.
17381738
:type aad_group_id: str
1739+
:param channel_count: The count of channels in the team.
1740+
:type chanel_count: int
1741+
:param member_count: The count of members in the team.
1742+
:type member_count: int
17391743
"""
17401744

17411745
_attribute_map = {
17421746
"id": {"key": "id", "type": "str"},
17431747
"name": {"key": "name", "type": "str"},
17441748
"aad_group_id": {"key": "aadGroupId", "type": "str"},
1749+
"channel_count": {"key": "channelCount", "type": "int"},
1750+
"member_count": {"key": "memberCount", "type": "int"},
17451751
}
17461752

17471753
def __init__(
1748-
self, *, id: str = None, name: str = None, aad_group_id: str = None, **kwargs
1754+
self, *, id: str = None, name: str = None, aad_group_id: str = None, member_count: int = None, chanel_count: int = None, **kwargs
17491755
) -> None:
17501756
super(TeamDetails, self).__init__(**kwargs)
17511757
self.id = id
17521758
self.name = name
17531759
self.aad_group_id = aad_group_id
1760+
self.channel_count = chanel_count
1761+
self.member_count = member_count
17541762

17551763

17561764
class TeamInfo(Model):

0 commit comments

Comments
 (0)
0