Files
kittycad.py/kittycad/models/create_shortlink_response.py

12 lines
217 B
Python
Raw Normal View History

from pydantic import BaseModel, ConfigDict
class CreateShortlinkResponse(BaseModel):
"""Response from creating a shortlink."""
key: str
url: str
model_config = ConfigDict(protected_namespaces=())