mirror of
https://github.com/j93es/browser-use-oauth.git
synced 2026-06-04 08:01:51 +09:00
6 lines
257 B
Python
6 lines
257 B
Python
from pydantic import BaseModel
|
|
|
|
class model(BaseModel):
|
|
msg: str | None = None
|
|
status: str | None = None # "success", "mfa_required", "google_blocked", "sso_not_found", "login_page_not_found", "invalid_credentials"
|
|
final_url: str | None = None
|