8000 Added AppBasedQuery state property. (#963) · Santhosh0505/botbuilder-python@5db04a7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5db04a7

Browse files
authored
Added AppBasedQuery state property. (microsoft#963)
1 parent 20a2b23 commit 5db04a7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,19 @@ class AppBasedLinkQuery(Model):
3939
4040
:param url: Url queried by user
4141
:type url: str
42+
:param state: The magic code for OAuth Flow
43+
:type state: str
4244
"""
4345

4446
_attribute_map = {
4547
"url": {"key": "url", "type": "str"},
48+
"state": {"key": "state", "type": "str"},
4649
}
4750

48-
def __init__(self, *, url: str = None, **kwargs) -> None:
51+
def __init__(self, *, url: str = None, state: str = None, **kwargs) -> None:
4952
super(AppBasedLinkQuery, self).__init__(**kwargs)
5053
self.url = url
54+
self.state = state
5155

5256

5357
class ChannelInfo(Model):

0 commit comments

Comments
 (0)
0