com.smartcar.sdk.data.VehicleEngineOil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for the Smartcar platform
package com.smartcar.sdk.data;
/** POJO for Smartcar /engine/oil endpoint */
public class VehicleEngineOil extends ApiData {
private double lifeRemaining;
/**
* Returns the oil life remaining
*
* @return oil life remaining
*/
public double getLifeRemaining() {
return this.lifeRemaining;
}
/** @return a stringified representation of VehicleFuel */
@Override
public String toString() {
return this.getClass().getName() + "{" + "lifeRemaining=" + lifeRemaining + '}';
}
}