10 lines
220 B
Python
10 lines
220 B
Python
![]() |
from pydantic import BaseModel, ConfigDict
|
||
|
|
||
|
|
||
|
class AuthApiKeyResponse(BaseModel):
|
||
|
"""The response from the `/auth/api-key` endpoint."""
|
||
|
|
||
|
session_token: str
|
||
|
|
||
|
model_config = ConfigDict(protected_namespaces=())
|