Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

21 řádky
462 B

  1. from pydantic import BaseModel, Field
  2. class CreateTask(BaseModel):
  3. DriverId: int = Field()
  4. Description: str = Field(..., min_length=3, max_length=200)
  5. StartLocation: tuple[str, str] = Field(...)
  6. EndLocation: tuple[str, str] = Field(...)
  7. class ShowTask(BaseModel):
  8. Id: int
  9. DriverId: int
  10. Description: str
  11. Status: str
  12. StartLocation: tuple[str, str]
  13. EndLocation: tuple[str, str]
  14. class Config:
  15. orm_mode = True