admin
2025-01-15 f84dcf456dbfa318f490d6cf878be5d5d5262718
1
2
3
4
5
6
7
8
9
10
11
12
13
class TradeRequest:
    def __init__(self, type_, data, request_id):
        self.type_ = type_
        self.data = data
        self.request_id = request_id
 
 
class TradeResponse:
    def OnTradeResponse(self, data_json):
        pass
 
    def OnTradeCallback(self, data_json):
        pass