提交注册表单的结果
| 121 | |
| 122 | @dataclass |
| 123 | class SignupFormResult: |
| 124 | """提交注册表单的结果""" |
| 125 | success: bool |
| 126 | page_type: str = "" # 响应中的 page.type 字段 |
| 127 | is_existing_account: bool = False # 是否为已注册账号 |
| 128 | response_data: Dict[str, Any] = None # 完整的响应数据 |
| 129 | error_message: str = "" |
| 130 | |
| 131 | |
| 132 | class RegistrationEngine: |
no outgoing calls
no test coverage detected