Source code for kittycad.models.get_entity_type


from pydantic import BaseModel, ConfigDict

from ..models.entity_type import EntityType


[docs] class GetEntityType(BaseModel): """The response from the `GetEntityType` command.""" entity_type: EntityType model_config = ConfigDict(protected_namespaces=())