Files
kittycad.py/kittycad/models/auth_api_key_response.py
zoo-github-actions-auth[bot] bb2718fb25 Update api spec (#458)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-07-04 14:13:27 +02:00

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=())