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

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

There is a newer version: 4.6.0
Show newest version
package com.smartcar.sdk.data;

public class VehicleChargeLimit extends ApiData {
    private double limit;

  /**
   * Returns whether charging cable is plugged in
   *
   * @return whether charging cable is plugged in
   */
  public double getChargeLimit() {
    return this.limit;
  }

  // TODO: add .toString()
  /** @return a stringified representation of VehicleFuel */
  @Override
  public String toString() {
    return this.getClass().getName()
        + "{"
        + "limit="
        + limit
        + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy