SnapFeast / auth /responses.py
Testys's picture
Commit all 3 files seperately
998e17b verified
raw
history blame
159 Bytes
from pydantic import BaseModel
class TokenResponse(BaseModel):
access_token: str
refresh_token: str
token_type: str = "Bearer"
expires_in: int