mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
12 lines
347 B
Python
12 lines
347 B
Python
from typing import List, Optional
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class CategorisationTriggerRequest(BaseModel):
|
|
portfolio_id: int
|
|
|
|
plans_to_consider: Optional[List[int]] = None
|
|
plan_priority_order: Optional[List[int]] = None
|
|
|
|
|
|
# {"portfolio_id": 556, "plans_to_consider": [1589319,1589320], "plan_priority_order": [1589319,1589320]}
|