/* Options: Date: 2025-06-27 21:56: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: BulkVehicleReprocessAuditRequest.* //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/GetVehicleReprocessHistory", Verbs="GET") public static class BulkVehicleReprocessAuditRequest implements IReturn, IPost { private static Object responseType = BulkVehicleReprocessHistory.class; public Object getResponseType() { return responseType; } } public static class BulkVehicleReprocessHistory { public String fileName = null; public String dateStarted = null; public String dateFinished = null; public Integer totalRecords = null; public Integer processedRecords = null; public String gasId = null; public String status = null; public String getFileName() { return fileName; } public BulkVehicleReprocessHistory setFileName(String value) { this.fileName = value; return this; } public String getDateStarted() { return dateStarted; } public BulkVehicleReprocessHistory setDateStarted(String value) { this.dateStarted = value; return this; } public String getDateFinished() { return dateFinished; } public BulkVehicleReprocessHistory setDateFinished(String value) { this.dateFinished = value; return this; } public Integer getTotalRecords() { return totalRecords; } public BulkVehicleReprocessHistory setTotalRecords(Integer value) { this.totalRecords = value; return this; } public Integer getProcessedRecords() { return processedRecords; } public BulkVehicleReprocessHistory setProcessedRecords(Integer value) { this.processedRecords = value; return this; } public String getGasId() { return gasId; } public BulkVehicleReprocessHistory setGasId(String value) { this.gasId = value; return this; } public String getStatus() { return status; } public BulkVehicleReprocessHistory setStatus(String value) { this.status = value; return this; } } }