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

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

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

/** POJO for Smartcar /vin endpoint */
public class VehicleVin extends ApiData {
  private String vin;

  /**
   * Returns the vehicle vin
   *
   * @return vehicle vin
   */
  public String getVin() {
    return this.vin;
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy