2025-06-09 11:13:05 +00:00
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
from typing import List, Optional, Literal
|
|
|
|
|
|
|
|
class TranscriptionRequest(BaseModel):
|
|
|
|
company_id: str
|
|
|
|
start_date: str
|
|
|
|
end_date: str
|
|
|
|
who: Literal['hit', 'client']
|
2025-09-04 19:15:15 +00:00
|
|
|
totalCost: Optional[Literal['true', 'false']]
|