mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +00:00
13 lines
321 B
Python
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
|