Files
kittycad.py/kittycad/models/error.py
zoo-github-actions-auth[bot] ca84069e9a Update api spec (#220)
* 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-16 12:09:12 -07:00

17 lines
277 B
Python

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