mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
9 lines
239 B
Python
9 lines
239 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
|