/* Options: Date: 2026-07-28 12:50:30 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://uat-api-vehicle-mgt-mb-dhc.rapp-customers.co.uk //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateVehicleV2Request.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/v2/{VehicleType}/Vehicle/UpdateVehicle", Verbs="POST") public static class UpdateVehicleV2Request implements IReturn>, IPost { public String vehicleIdentifier = null; public String vin = null; public String vehicleType = null; public String getVehicleIdentifier() { return vehicleIdentifier; } public UpdateVehicleV2Request setVehicleIdentifier(String value) { this.vehicleIdentifier = value; return this; } public String getVin() { return vin; } public UpdateVehicleV2Request setVin(String value) { this.vin = value; return this; } public String getVehicleType() { return vehicleType; } public UpdateVehicleV2Request setVehicleType(String value) { this.vehicleType = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class ProcessResult { public Boolean success = null; public Boolean rejected = null; public OpenSearchVehicle mappedVehicle = null; public ActionType action = null; public Boolean isSuccess() { return success; } public ProcessResult setSuccess(Boolean value) { this.success = value; return this; } public Boolean isRejected() { return rejected; } public ProcessResult setRejected(Boolean value) { this.rejected = value; return this; } public OpenSearchVehicle getMappedVehicle() { return mappedVehicle; } public ProcessResult setMappedVehicle(OpenSearchVehicle value) { this.mappedVehicle = value; return this; } public ActionType getAction() { return action; } public ProcessResult setAction(ActionType value) { this.action = value; return this; } } public static enum ActionType { Insert, Update, Offline, NoAction, Error; } }