com.geotab.model.entity.device.VehicleIdentificationNumberAware Maven / Gradle / Ivy
package com.geotab.model.entity.device;
/**
* For devices with a Vehicle Identification Number (VIN).
*/
public interface VehicleIdentificationNumberAware {
String getVehicleIdentificationNumber();
Object setVehicleIdentificationNumber(String vehicleIdentificationNumber);
String getEngineVehicleIdentificationNumber();
Object setEngineVehicleIdentificationNumber(String engineVehicleIdentificationNumber);
Boolean isPinDevice();
Object setPinDevice(Boolean pinDevice);
}