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