transcription-cost-usage-re.../backend/app/schemas/usage_cost_update_schema.py

10 lines
260 B
Python
Raw Normal View History

2025-06-09 11:13:05 +00:00
from pydantic import BaseModel, Field
from typing import List, Optional, Literal
class UpdateUsageCostRequest(BaseModel):
company_ids: Optional[List[str]] = None
start_date: str
end_date: str
product: str
price: float
billing_unit: int