o2o-infinith-backend/app/models/api/plan.py

17 lines
297 B
Python

from pydantic import BaseModel
class PlanCreate(BaseModel):
report_id: str
regenerate: bool = False
class PlanResponse(BaseModel):
id: str
analysis_run_id: str
brand_guide: dict
channel_strategies: list
content_strategy: dict
calendar: list
created_at: str