Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

from typing import List
from msrest.serialization import Model
from botbuilder.schema import (
Attachment,
Expand Down Expand Up @@ -1947,7 +1948,7 @@ def __init__(
self,
*,
continuation_token: str = None,
members: [TeamsChannelAccount] = None,
members: List[TeamsChannelAccount] = None,
**kwargs
) -> None:
super(TeamsPagedMembersResult, self).__init__(
Expand Down Expand Up @@ -1977,7 +1978,7 @@ class TeamsChannelData(Model):

_attribute_map = {
"channel": {"key": "channel", "type": "ChannelInfo"},
"eventType": {"key": "eventType", "type": "str"},
"event_type": {"key": "eventType", "type": "str"},
"team": {"key": "team", "type": "TeamInfo"},
"notification": {"key": "notification", "type": "NotificationInfo"},
"tenant": {"key": "tenant", "type": "TenantInfo"},
Expand All @@ -1988,7 +1989,7 @@ def __init__(
self,
*,
channel=None,
eventType: str = None,
event_type: str = None,
team=None,
notification=None,
tenant=None,
Expand All @@ -1998,7 +1999,7 @@ def __init__(
super(TeamsChannelData, self).__init__(**kwargs)
self.channel = channel
# doing camel case here since that's how the data comes in
self.event_type = eventType
self.event_type = event_type
self.team = team
self.notification = notification
self.tenant = tenant
Expand Down