(self, mobile: str)
| 311 | return self.request_encrypted("/hapi/en/api", params) |
| 312 | |
| 313 | def do_lottery(self, mobile: str) -> dict: |
| 314 | params = { |
| 315 | "activityId": ACTIVITY_ID, |
| 316 | "mobile": mobile, |
| 317 | "apiName": "act/ActApi/doubleFestivalLottery" |
| 318 | } |
| 319 | return self.request_encrypted("/hapi/en/api", params) |
| 320 | |
| 321 | def do_egg_lottery(self, mobile: str, activity_id: str = "1611") -> dict: |
| 322 | params = { |
no test coverage detected