/* Options: Date: 2025-10-29 23:55:28 Version: 8.80 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: VehicleSwapAgentEnabledAuditRequest.* //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/VehicleSwapAgentEnabledAudit", Verbs="GET") public static class VehicleSwapAgentEnabledAuditRequest implements IReturn, IGet { private static Object responseType = VehicleSwapAgentEnabledAuditResponse.class; public Object getResponseType() { return responseType; } } public static class VehicleSwapAgentEnabledAuditResponse { public ArrayList VehicleSwapAgentEnabledAudits = new ArrayList(); public ArrayList getVehicleSwapAgentEnabledAudits() { return VehicleSwapAgentEnabledAudits; } public VehicleSwapAgentEnabledAuditResponse setVehicleSwapAgentEnabledAudits(ArrayList value) { this.VehicleSwapAgentEnabledAudits = value; return this; } } public static class VehicleSwapAgentEnabledAuditDto { public Integer Id = null; public String Reason = null; public Boolean IsEnabled = null; public String GasUserId = null; public Date CreationDate = null; public Integer getId() { return Id; } public VehicleSwapAgentEnabledAuditDto setId(Integer value) { this.Id = value; return this; } public String getReason() { return Reason; } public VehicleSwapAgentEnabledAuditDto setReason(String value) { this.Reason = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public VehicleSwapAgentEnabledAuditDto setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public String getGasUserId() { return GasUserId; } public VehicleSwapAgentEnabledAuditDto setGasUserId(String value) { this.GasUserId = value; return this; } public Date getCreationDate() { return CreationDate; } public VehicleSwapAgentEnabledAuditDto setCreationDate(Date value) { this.CreationDate = value; return this; } } }