Update api spec (#240)
* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
40e278a550
commit
552c647240
12
kittycad/models/path_get_sketch_target_uuid.py
Normal file
12
kittycad/models/path_get_sketch_target_uuid.py
Normal file
@ -0,0 +1,12 @@
|
||||
from typing import Optional
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
|
||||
|
||||
class PathGetSketchTargetUuid(BaseModel):
|
||||
"""The response from the `PathGetSketchTargetUuid` command."""
|
||||
|
||||
target_id: Optional[str] = None
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
Reference in New Issue
Block a user