Source code for kittycad.models.entity_get_child_uuid


from pydantic import BaseModel, ConfigDict



[docs] class EntityGetChildUuid(BaseModel): """The response from the `EntityGetChildUuid` command.""" entity_id: str model_config = ConfigDict(protected_namespaces=())