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

This commit is contained in:
2025-06-03 15:45:37 -04:00
parent b30adcf93b
commit b0d874ec94
3 changed files with 178 additions and 292 deletions

View File

@ -199,6 +199,13 @@ func (c *Client) GetVehicleByVIN(vin string) *Vehicle {
vehicle.Windows = make(map[string]Window)
vehicle.Tires = make(map[string]Tire)
vehicle.ClimateProfiles = make(map[string]ClimateProfile)
vehicle.Troubles = make(map[string]Trouble)
if vehicle.isEV() {
vehicle.EV = true
} else {
vehicle.EV = false
}
vehicle.GetVehicleStatus()
vehicle.GetVehicleCondition()