Reverted back int to string
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 22s

This commit is contained in:
2025-05-29 00:43:37 -04:00
parent 4b7af175ce
commit cc3edf7e22

View File

@ -159,14 +159,14 @@ type VehicleStatus struct {
AvgFuelConsumptionMpg float64 `json:"avgFuelConsumptionMpg"` // + 18.4
AvgFuelConsumptionLitersPer100Kilometers float64 `json:"avgFuelConsumptionLitersPer100Kilometers"` // + 12.8
RemainingFuelPercent int `json:"remainingFuelPercent"` // + 82
TirePressureFrontLeft int `json:"tirePressureFrontLeft"` // + "2275"
TirePressureFrontRight int `json:"tirePressureFrontRight"` // + "2344"
TirePressureRearLeft int `json:"tirePressureRearLeft"` // + "2413"
TirePressureRearRight int `json:"tirePressureRearRight"` // + "2344"
TirePressureFrontLeftPsi int `json:"tirePressureFrontLeftPsi"` // + "33"
TirePressureFrontRightPsi int `json:"tirePressureFrontRightPsi"` // + "34"
TirePressureRearLeftPsi int `json:"tirePressureRearLeftPsi"` // + "35"
TirePressureRearRightPsi int `json:"tirePressureRearRightPsi"` // + "34"
TirePressureFrontLeft string `json:"tirePressureFrontLeft"` // + "2275"
TirePressureFrontRight string `json:"tirePressureFrontRight"` // + "2344"
TirePressureRearLeft string `json:"tirePressureRearLeft"` // + "2413"
TirePressureRearRight string `json:"tirePressureRearRight"` // + "2344"
TirePressureFrontLeftPsi string `json:"tirePressureFrontLeftPsi"` // + "33"
TirePressureFrontRightPsi string `json:"tirePressureFrontRightPsi"` // + "34"
TirePressureRearLeftPsi string `json:"tirePressureRearLeftPsi"` // + "35"
TirePressureRearRightPsi string `json:"tirePressureRearRightPsi"` // + "34"
TyreStatusFrontLeft string `json:"tyreStatusFrontLeft"` // + "UNKNOWN"
TyreStatusFrontRight string `json:"tyreStatusFrontRight"` // + "UNKNOWN"
TyreStatusRearLeft string `json:"tyreStatusRearLeft"` // + "UNKNOWN"