/* Options: Date: 2025-10-29 23:55:29 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: VehicleSwapResolveAuditRequest.* //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/vehicleswap/resolve/audit", Verbs="GET") public static class VehicleSwapResolveAuditRequest implements IReturn { private static Object responseType = VehicleSwapResolveAuditResponse.class; public Object getResponseType() { return responseType; } } public static class VehicleSwapResolveAuditResponse { public ArrayList Audits = new ArrayList(); public ArrayList getAudits() { return Audits; } public VehicleSwapResolveAuditResponse setAudits(ArrayList value) { this.Audits = value; return this; } } public static class DisplayVehicleSwapResolveAudit { public Integer Id = null; public String Action = null; public Date Created = null; public UUID Guid = null; public String User = null; public Integer getId() { return Id; } public DisplayVehicleSwapResolveAudit setId(Integer value) { this.Id = value; return this; } public String getAction() { return Action; } public DisplayVehicleSwapResolveAudit setAction(String value) { this.Action = value; return this; } public Date getCreated() { return Created; } public DisplayVehicleSwapResolveAudit setCreated(Date value) { this.Created = value; return this; } public UUID getGuid() { return Guid; } public DisplayVehicleSwapResolveAudit setGuid(UUID value) { this.Guid = value; return this; } public String getUser() { return User; } public DisplayVehicleSwapResolveAudit setUser(String value) { this.User = value; return this; } } }