All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.smartcar.sdk.data.VehicleEngineOil Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
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 + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy