/* Options: Date: 2025-05-05 17:29:40 Version: 8.61 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://prod-api-agency-orch-mb-dhc.rapp-customers.co.uk //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetMotabilityVehiclesRequest.* //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/vehicle/MotabilityVehicles", Verbs="Get") public static class GetMotabilityVehiclesRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class MotabilityStockResponse { public Integer TotalVehicles = null; public ArrayList Vehicles = new ArrayList(); public Integer getTotalVehicles() { return TotalVehicles; } public MotabilityStockResponse setTotalVehicles(Integer value) { this.TotalVehicles = value; return this; } public ArrayList getVehicles() { return Vehicles; } public MotabilityStockResponse setVehicles(ArrayList value) { this.Vehicles = value; return this; } } }