Files
kittycad.py/kittycad/models/entity_get_num_children.py

12 lines
220 B
Python
Raw Normal View History

from pydantic import BaseModel, ConfigDict
class EntityGetNumChildren(BaseModel):
"""The response from the `EntityGetNumChildren` command."""
num: int
model_config = ConfigDict(protected_namespaces=())