Files
kittycad.py/kittycad/models/auth_api_key_response.py

10 lines
220 B
Python
Raw Normal View History

from pydantic import BaseModel, ConfigDict
class AuthApiKeyResponse(BaseModel):
"""The response from the `/auth/api-key` endpoint."""
session_token: str
model_config = ConfigDict(protected_namespaces=())