mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-01 18:19:08 +00:00
13 lines
250 B
Python
13 lines
250 B
Python
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
|