File tree 1 file changed +3
-0
lines changed
libraries/botbuilder-schema/botbuilder/schema 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -1280,6 +1280,7 @@ class ChannelAccount(Model):
1280
1280
"name" : {"key" : "name" , "type" : "str" },
1281
1281
"aad_object_id" : {"key" : "aadObjectId" , "type" : "str" },
1282
1282
"role" : {"key" : "role" , "type" : "str" },
1283
+ "properties" : {"key" : "properties" , "type" : "object" },
1283
1284
}
1284
1285
1285
1286
def __init__ (
@@ -1289,13 +1290,15 @@ def __init__(
1289
1290
name : str = None ,
1290
1291
aad_object_id : str = None ,
1291
1292
role = None ,
1293
+ properties = None ,
1292
1294
** kwargs
1293
1295
) -> None :
1294
1296
super (ChannelAccount , self ).__init__ (** kwargs )
1295
1297
self .id = id
1296
1298
self .name = name
1297
1299
self .aad_object_id = aad_object_id
1298
1300
self .role = role
1301
+ self .properties = properties
1299
1302
1300
1303
1301
1304
class ConversationAccount (Model ):
You can’t perform that action at this time.
0 commit comments