VendorVehicleResponse
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | Long | Unique identifier for the vehicle | [default to null] |
| car_model_id | Long | ID of the car model | [default to null] |
| car_model_name | String | Name of the car model | [optional] [default to null] |
| car_make_name | String | Name of the car make/manufacturer | [optional] [default to null] |
| driver_id | Long | ID of the driver who owns this vehicle | [default to null] |
| driver_name | String | Full name of the driver | [optional] [default to null] |
| vehicle_type_id | Long | ID of the vehicle type | [default to null] |
| vehicle_type_name | String | Name of the vehicle type | [optional] [default to null] |
| reg_no | String | Vehicle registration number | [default to null] |
| color | String | Vehicle color | [default to null] |
| is_active | Boolean | Whether the vehicle is currently active | [default to null] |
| verified | Boolean | Whether the vehicle is verified | [default to null] |
| created_at | Date | Timestamp when the vehicle was created | [default to null] |
| updated_at | Date | Timestamp when the vehicle was last updated | [default to null] |
| car_model | CarModelResponse | [optional] [default to null] | |
| vehicle_type | VehicleTypeDetail | [optional] [default to null] |