Administrator
5 天以前 9350e19ac6c330a5b1da9b58e82a6a0906829c42
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