mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
10 lines
207 B
Python
10 lines
207 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class PlanTriggerRequest(BaseModel):
|
|
budget: float | None = None
|
|
goal: str
|
|
housing_type: str
|
|
goal_value: str
|
|
portfolio_id: int
|
|
trigger_file_path: str
|