SurfSense/surfsense_backend/app/schemas/google_auth_credentials.py

14 lines
250 B
Python
Raw Normal View History

2025-08-02 01:36:36 +02:00
from datetime import datetime
from pydantic import BaseModel
class GoogleAuthCredentialsBase(BaseModel):
token: str
refresh_token: str
token_uri: str
client_id: str
expiry: datetime
scopes: list[str]
client_secret: str