Preview payment request payload.
| 264 | return f"{hour:02d}:{minute:02d}:{second:02d}" |
| 265 | |
| 266 | |
| 267 | class CaptchaPoint(BaseModel): |
| 268 | """OCR-resolved click point in original captcha image coordinates.""" |
| 269 | |
| 270 | model_config = ConfigDict(extra="ignore") |
| 271 | |
| 272 | x: float |
| 273 | y: float |
| 274 | order: int | None = None |
| 275 | label: str = "" |
| 276 | |
| 277 |
no outgoing calls
no test coverage detected