2024-07-28 15:21:51 -07:00
|
|
|
from typing import List
|
2024-07-26 18:08:45 -07:00
|
|
|
|
2024-07-28 15:21:51 -07:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2024-07-26 18:08:45 -07:00
|
|
|
|
|
|
|
|
|
|
|
class EntityGetSketchPaths(BaseModel):
|
|
|
|
"""The response from the `EntityGetSketchPaths` command."""
|
|
|
|
|
|
|
|
entity_ids: List[str]
|
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|