com.smartcar.sdk.data.VehicleVin 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 /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 + '\'' + '}';
}
}