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