Mbonea's picture
test the route
ff3b5ca
raw
history blame
No virus
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