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