2024-07-28 15:21:51 -07:00
|
|
|
from typing import Optional
|
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 PathGetSketchTargetUuid(BaseModel):
|
|
|
|
"""The response from the `PathGetSketchTargetUuid` command."""
|
|
|
|
|
|
|
|
target_id: Optional[str] = None
|
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|