File size: 433 Bytes
80feb1b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
from pydantic import BaseModel
from typing import Optional
from datetime import datetime
class FeedbackBase(BaseModel):
order_id: int
rating: int
comment: Optional[str] = None
person_id: Optional[int] = None
class FeedbackCreate(FeedbackBase):
pass
class Feedback(FeedbackBase):
id: int
created_at: datetime
class Config:
from_attributes = True # Updated from orm_mode for Pydantic V2
|