Source code for kittycad.models.create_shortlink_response

from pydantic import BaseModel, ConfigDict


[docs] class CreateShortlinkResponse(BaseModel): """Response from creating a shortlink.""" key: str url: str model_config = ConfigDict(protected_namespaces=())