Files
speckle_automate_python_exa…/speckle_project_data.py
T
Gergő Jedlicska 9b78af538b devcontainer setup
2023-08-30 07:41:08 +00:00

14 lines
366 B
Python

from pydantic import BaseModel, ConfigDict
from stringcase import camelcase
class SpeckleProjectData(BaseModel):
"""Values of the project / model that triggered the run of this function."""
project_id: str
model_id: str
version_id: str
speckle_server_url: str
model_config = ConfigDict(alias_generator=camelcase, protected_namespaces=())