Model/applications/modelling_e2e/modelling_e2e_trigger_body.py
Daniel Roth c51ca47467 Rename no_solar → refetch_solar and add refetch_epc, repredict_epc flags to TriggerBody 🟩
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-26 10:12:21 +00:00

13 lines
321 B
Python

from pydantic import BaseModel, ConfigDict
class ModellingE2ETriggerBody(BaseModel):
model_config = ConfigDict(extra="allow")
property_ids: list[int]
portfolio_id: int
scenario_id: int
refetch_solar: bool = True
refetch_epc: bool = True
repredict_epc: bool = True
dry_run: bool = False