Update api spec (#293)
* 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
cde3af8385
commit
d5448c9e2f
11
kittycad/models/create_shortlink_request.py
Normal file
11
kittycad/models/create_shortlink_request.py
Normal file
@ -0,0 +1,11 @@
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
|
||||
class CreateShortlinkRequest(BaseModel):
|
||||
"""Request to create a shortlink."""
|
||||
|
||||
restrict_to_org: bool
|
||||
|
||||
url: str
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
Reference in New Issue
Block a user