File size: 428 Bytes
0827183
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

from botbuilder.schema import ResourceResponse, ConversationAccount


class ActivityResourceResponse(ResourceResponse):
    def __init__(self, activity_id: str, conversation: ConversationAccount, **kwargs):
        super().__init__(**kwargs)
        self.activity_id = activity_id
        self.conversation = conversation