presenton/servers/fastapi/models/presentation_from_template.py
2025-09-12 02:27:59 +05:45

14 lines
307 B
Python

from typing import List, Literal
from pydantic import BaseModel
import uuid
class SlideContentUpdate(BaseModel):
index: int
content: dict
class EditPresentationRequest(BaseModel):
presentation_id: uuid.UUID
slides: List[SlideContentUpdate]
export_as: Literal["pptx", "pdf"] = "pptx"