Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Axsuarez/properties in conversation account #296

Merged
merged 9 commits into from
Aug 13, 2019
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