def user_login(self, broker_id, investor_id, passwd):
     req = ApiStruct.ReqUserLogin(BrokerID=broker_id,
                                  UserID=investor_id,
                                  Password=passwd)
     self.requestid += 1
     r = self.ReqUserLogin(req, self.requestid)
Esempio n. 2
0
 def user_login(self, broker_id, investor_id, passwd):
     req = ApiStruct.ReqUserLogin(BrokerID=broker_id,
                                  UserID=investor_id,
                                  Password=passwd)
     r = self.ReqUserLogin(req, self.inc_request_id())