Model/backend/app/plan/schemas.py
2023-07-17 17:01:07 +01:00

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