Last commit not found
raw
history blame
256 Bytes
from typing import Optional
from pydantic import BaseModel
class BaseRequest(BaseModel):
userId: int
taskId: str
fileName: str
youtubeLink: Optional[str]
telegramId: Optional[str]
class GetTranscriptions(BaseModel):
userId: int