mirror of
https://github.com/rommapp/romm.git
synced 2026-06-27 22:35:57 +00:00
14 lines
273 B
Python
14 lines
273 B
Python
from typing import NotRequired, TypedDict
|
|
|
|
|
|
class TokenResponse(TypedDict):
|
|
access_token: str
|
|
token_type: str
|
|
expires: int
|
|
refresh_token: NotRequired[str]
|
|
refresh_expires: NotRequired[int]
|
|
|
|
|
|
class OIDCLogoutResponse(TypedDict):
|
|
oidc_logout_url: str
|