Requesting that the fatcAvailable property (or all properties if it's easier, not just a select few) be accessible from VehicleManager. Currently, only the following properties are mapped and sent back from the regional files:
KiaUvoAPIUSA.py:
for entry in response["payload"]["vehicleSummary"]:
vehicle: Vehicle = Vehicle(
id=entry["vehicleIdentifier"],
name=entry["nickName"],
model=entry["modelName"],
key=entry["vehicleKey"],
engine_type=self._engine_type_from_fuel_type(entry.get("fuelType")),
timezone=self.data_timezone,
)
result.append(vehicle)
If there is another place this property should be available already that I have not seen/found, I'd appreciate any pointers in the right direction. Thank you!
Requesting that the
fatcAvailableproperty (or all properties if it's easier, not just a select few) be accessible from VehicleManager. Currently, only the following properties are mapped and sent back from the regional files:KiaUvoAPIUSA.py:
If there is another place this property should be available already that I have not seen/found, I'd appreciate any pointers in the right direction. Thank you!