/* Options: Date: 2025-06-27 21:14:33 Version: 8.81 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: DeleteVehicleExclusionRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/{VehicleType}/Vehicle/Exclusion/{VehicleIdentifier}", Verbs="DELETE") public static class DeleteVehicleExclusionRequest implements IReturn, IDelete { public String vehicleIdentifier = null; public String vehicleType = null; public String getVehicleIdentifier() { return vehicleIdentifier; } public DeleteVehicleExclusionRequest setVehicleIdentifier(String value) { this.vehicleIdentifier = value; return this; } public String getVehicleType() { return vehicleType; } public DeleteVehicleExclusionRequest setVehicleType(String value) { this.vehicleType = value; return this; } private static Object responseType = EmptyResponse.class; public Object getResponseType() { return responseType; } } public static class EmptyResponse { } }