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

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-05-08 15:02:59 -07:00

16 lines
232 B
Python

from pydantic import BaseModel, ConfigDict
class Error(BaseModel):
"""Error information from a response."""
error_code: str
message: str
request_id: str
model_config = ConfigDict(protected_namespaces=())