Source code for kittycad.models.entity_clone
from pydantic import BaseModel, ConfigDict
[docs]
class EntityClone(BaseModel):
"""The response from the `EntityClone` command."""
model_config = ConfigDict(protected_namespaces=())
from pydantic import BaseModel, ConfigDict
[docs]
class EntityClone(BaseModel):
"""The response from the `EntityClone` command."""
model_config = ConfigDict(protected_namespaces=())