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