(self, mobile: str)
| 252 | return {"raw": response.text} |
| 253 | |
| 254 | def get_user_info(self, mobile: str) -> dict: |
| 255 | params = {"channelId": CHANNEL_ID, "portal": "45", "mobile": mobile} |
| 256 | return self.request_plain("/vapi/new_member/get_user_info", params) |
| 257 | |
| 258 | def check_user_state(self, mobile: str) -> dict: |
| 259 | params = {"mobile": mobile, "is4G": "1", "is5G": "1", "isDX": "1", "channelId": CHANNEL_ID, "portal": "45"} |
no test coverage detected