Files
kittycad.py/kittycad/models/take_snapshot.py

11 lines
183 B
Python
Raw Normal View History

from pydantic import BaseModel
from .base64data import Base64Data
class TakeSnapshot(BaseModel):
"""The response from the `TakeSnapshot` command."""
contents: Base64Data