Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

21 Zeilen
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