Source code for kittycad.models.entity_get_num_children


from pydantic import BaseModel, ConfigDict



[docs] class EntityGetNumChildren(BaseModel): """The response from the `EntityGetNumChildren` command.""" num: int model_config = ConfigDict(protected_namespaces=())