More changes
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 25s
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 25s
This commit is contained in:
@ -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()
|
||||
|
Reference in New Issue
Block a user