More changes
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 24s

This commit is contained in:
2025-06-04 17:28:21 -04:00
parent 25c551af1d
commit af28d7b2ed
2 changed files with 6 additions and 6 deletions

View File

@ -218,13 +218,13 @@ type VehicleCondition struct {
RemainingFuelPercent int `json:"remainingFuelPercent,string"` // "66"
Odometer int `json:"odometer"` // 92
OdometerUnit string `json:"odometerUnit"` // "MILES"
TirePressureFrontLeft int `json:"tirePressureFrontLeft,omitempty"` // null | 36
TirePressureFrontLeft float64 `json:"tirePressureFrontLeft,omitempty"` // null | 36
TirePressureFrontLeftUnit string `json:"tirePressureFrontLeftUnit"` // "PSI"
TirePressureFrontRight int `json:"tirePressureFrontRight,omitempty"` // null | 36
TirePressureFrontRight float64 `json:"tirePressureFrontRight,omitempty"` // null | 36
TirePressureFrontRightUnit string `json:"tirePressureFrontRightUnit"` // "PSI",
TirePressureRearLeft int `json:"tirePressureRearLeft,omitempty"` // null | 36
TirePressureRearLeft float64 `json:"tirePressureRearLeft,omitempty"` // null | 36
TirePressureRearLeftUnit string `json:"tirePressureRearLeftUnit"` // "PSI"
TirePressureRearRight int `json:"tirePressureRearRight,omitempty"` // null | 36
TirePressureRearRight float64 `json:"tirePressureRearRight,omitempty"` // null | 36
TirePressureRearRightUnit string `json:"tirePressureRearRightUnit"` // "PSI"
DoorBootPosition string `json:"doorBootPosition"` // "CLOSED | OPEN"
DoorEngineHoodPosition string `json:"doorEngineHoodPosition"` // "CLOSED | OPEN"