Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
from ._models_py3 import TabResponseCard
from ._models_py3 import TabResponseCards
from ._models_py3 import TabResponsePayload
from ._models_py3 import TabResponse
from ._models_py3 import TabSubmit
from ._models_py3 import TabSubmitData
from ._models_py3 import TabSuggestedActions
Expand Down Expand Up @@ -139,6 +140,7 @@
"TabResponseCard",
"TabResponseCards",
"TabResponsePayload",
"TabResponse",
"TabSubmit",
"TabSubmitData",
"TabSuggestedActions",
Expand Down
21 changes: 21 additions & 0 deletions libraries/botbuilder-schema/botbuilder/schema/teams/_models_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -2218,6 +2218,27 @@ def _custom_init(self):
return


class TabResponse(Model):
"""
Envelope for Card Tab Response Payload.

:param tab: Possible values include: 'continue', 'auth' or 'silentAuth'
:type type: ~botframework.connector.teams.models.TabResponsePayload
"""

_attribute_map = {
"tab": {"key": "tab", "type": "TabResponsePayload"},
}

def __init__(self, *, tab=None, **kwargs) -> None:
super(TabResponse, self).__init__(**kwargs)
self.tab = tab
self._custom_init()

def _custom_init(self):
return


class TabSumit(Model):
"""
Invoke ('tab/submit') request value payload.
Expand Down