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

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

package com.smartcar.sdk.data;

/** POJO for Smartcar /battery/capacity endpoint */
public class VehicleBatteryCapacity extends ApiData {
  private double capacity;

  /**
   * Returns the battery capacity
   *
   * @return battery capacity
   */
  public double getCapacity() {
    return this.capacity;
  }

  /** @return a stringified representation of VehicleBattery */
  @Override
  public String toString() {
    return this.getClass().getName() + "{" + "capacity=" + capacity + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy