Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- from typing import Optional
- from pydantic import BaseModel
-
-
- class CreateVehicle(BaseModel):
- Model: str
- Year: int
- LicensePlate: str
- Mileage: int
- Capacity: int
- Type: str
-
-
- class OutputVehicle(BaseModel):
- Id: int
- Model: str
- Year: int
- LicensePlate: str
- Mileage: int
- CurrentLocation: Optional[list[str]] = None
- Fuel: Optional[int] = 0
- Type: str
- DriverHistory: Optional[list[int]] = None
- AssignedDriver: Optional[int] = None
- Capacity: int
- Status: str
-
-
- class UpdateVehicle(OutputVehicle):
- pass
-
-
- class VehicleLocation(BaseModel):
- CurrentLocation: list[str]
|