Skip to content

Commit

Permalink
Axsuarez/properties in conversation account (#296)
Browse files Browse the repository at this point in the history
* Properties in ConversationAccount
  • Loading branch information
axelsrz authored Aug 13, 2019
1 parent f9e26b5 commit 19f1a5c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions libraries/botbuilder-schema/botbuilder/schema/_models_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -763,6 +763,8 @@ class ConversationAccount(Model):
:type role: str or ~botframework.connector.models.RoleTypes
:param tenant_id: This conversation's tenant ID
:type tenant_id: str
:param properties: This conversation's properties
:type properties: object
"""

_attribute_map = {
Expand All @@ -773,6 +775,7 @@ class ConversationAccount(Model):
"aad_object_id": {"key": "aadObjectId", "type": "str"},
"role": {"key": "role", "type": "str"},
"tenant_id": {"key": "tenantID", "type": "str"},
"properties": {"key": "properties", "type": "object"},
}

def __init__(
Expand All @@ -785,6 +788,7 @@ def __init__(
aad_object_id: str = None,
role=None,
tenant_id=None,
properties=None,
**kwargs
) -> None:
super(ConversationAccount, self).__init__(**kwargs)
Expand All @@ -795,6 +799,7 @@ def __init__(
self.aad_object_id = aad_object_id
self.role = role
self.tenant_id = tenant_id
self.properties = properties


class ConversationMembers(Model):
Expand Down

0 comments on commit 19f1a5c

Please sign in to comment.