/* Options: Date: 2025-10-29 23:55:15 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: VehicleSwapActiveRequest.* //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/Active", Verbs="GET") public static class VehicleSwapActiveRequest implements IReturn, IGet { private static Object responseType = VehicleSwapActiveResponse.class; public Object getResponseType() { return responseType; } } public static class VehicleSwapActiveResponse { public ArrayList ActiveVehicleSwaps = new ArrayList(); public ArrayList getActiveVehicleSwaps() { return ActiveVehicleSwaps; } public VehicleSwapActiveResponse setActiveVehicleSwaps(ArrayList value) { this.ActiveVehicleSwaps = value; return this; } } public static class VehicleSwapActive { public Integer Id = null; public String Reference = null; public String OrderType = null; public UUID VehicleSwapGuid = null; public UUID OrderGuid = null; public String Showroom = null; public String CommissionNumber = null; public String RequestReason = null; public Boolean SentToCesar = null; public Date CreationDate = null; public Date MaintenanceDate = null; public Integer getId() { return Id; } public VehicleSwapActive setId(Integer value) { this.Id = value; return this; } public String getReference() { return Reference; } public VehicleSwapActive setReference(String value) { this.Reference = value; return this; } public String getOrderType() { return OrderType; } public VehicleSwapActive setOrderType(String value) { this.OrderType = value; return this; } public UUID getVehicleSwapGuid() { return VehicleSwapGuid; } public VehicleSwapActive setVehicleSwapGuid(UUID value) { this.VehicleSwapGuid = value; return this; } public UUID getOrderGuid() { return OrderGuid; } public VehicleSwapActive setOrderGuid(UUID value) { this.OrderGuid = value; return this; } public String getShowroom() { return Showroom; } public VehicleSwapActive setShowroom(String value) { this.Showroom = value; return this; } public String getCommissionNumber() { return CommissionNumber; } public VehicleSwapActive setCommissionNumber(String value) { this.CommissionNumber = value; return this; } public String getRequestReason() { return RequestReason; } public VehicleSwapActive setRequestReason(String value) { this.RequestReason = value; return this; } public Boolean isSentToCesar() { return SentToCesar; } public VehicleSwapActive setSentToCesar(Boolean value) { this.SentToCesar = value; return this; } public Date getCreationDate() { return CreationDate; } public VehicleSwapActive setCreationDate(Date value) { this.CreationDate = value; return this; } public Date getMaintenanceDate() { return MaintenanceDate; } public VehicleSwapActive setMaintenanceDate(Date value) { this.MaintenanceDate = value; return this; } } }