/* Options: Date: 2025-06-27 20:56:28 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: GetVehicleExclusionRequest.* //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", Verbs="GET") public static class GetVehicleExclusionRequest implements IReturn, IGet { public String vehicleType = null; public String getVehicleType() { return vehicleType; } public GetVehicleExclusionRequest setVehicleType(String value) { this.vehicleType = value; return this; } private static Object responseType = GetVehicleExclusionResponse.class; public Object getResponseType() { return responseType; } } public static class GetVehicleExclusionResponse { public ArrayList exclusions = new ArrayList(); public ArrayList getExclusions() { return exclusions; } public GetVehicleExclusionResponse setExclusions(ArrayList value) { this.exclusions = value; return this; } } public static class VehicleExclusion { } public static class VehicleExclusion { public String vehicleIdentifier = null; public Boolean used = null; public String userId = null; public Date exclusionDate = null; public String getVehicleIdentifier() { return vehicleIdentifier; } public VehicleExclusion setVehicleIdentifier(String value) { this.vehicleIdentifier = value; return this; } public Boolean isUsed() { return used; } public VehicleExclusion setUsed(Boolean value) { this.used = value; return this; } public String getUserId() { return userId; } public VehicleExclusion setUserId(String value) { this.userId = value; return this; } public Date getExclusionDate() { return exclusionDate; } public VehicleExclusion setExclusionDate(Date value) { this.exclusionDate = value; return this; } } }