Files
kittycad.py/kittycad/models/take_snapshot.py
Jess Frazelle faaeb3a472 pydantic
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-11-29 00:39:14 -08:00

11 lines
183 B
Python

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