|
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
|