v3.2.0
What's Changed
- Adds a new
SmartcarVehicleRequest
class, andVehicle
class method `request() that allow for making flexible requests to Smartcar vehicle endpoints, including brand specific endpoints.
Example:
SmartcarVehicleRequest request = new SmartcarVehicleRequest.Builder()
.method("GET")
.path("odometer")
.build();
VehicleResponse odometer = vehicle.request(request);
Full Changelog: v3.1.2...v3.2.0