/* Options: Date: 2026-09-05 08:32:35 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EquipmentVehicleRequest.* //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/Equipment/{EquipmentID}/vehicle", Verbs="GET,PUT,OPTIONS") public static class EquipmentVehicleRequest implements IReturn { public Integer EquipmentID = null; public EquipmentVehicle Vehicle = null; public Integer getEquipmentID() { return EquipmentID; } public EquipmentVehicleRequest setEquipmentID(Integer value) { this.EquipmentID = value; return this; } public EquipmentVehicle getVehicle() { return Vehicle; } public EquipmentVehicleRequest setVehicle(EquipmentVehicle value) { this.Vehicle = value; return this; } private static Object responseType = EquipmentVehicleResponse.class; public Object getResponseType() { return responseType; } } public static class EquipmentVehicleResponse { public EquipmentVehicle Vehicle = null; public ArrayList Fleet = new ArrayList(); public ResponseStatus ResponseStatus = null; public EquipmentVehicle getVehicle() { return Vehicle; } public EquipmentVehicleResponse setVehicle(EquipmentVehicle value) { this.Vehicle = value; return this; } public ArrayList getFleet() { return Fleet; } public EquipmentVehicleResponse setFleet(ArrayList value) { this.Fleet = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public EquipmentVehicleResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class EquipmentVehicle { public Integer EquipmentVehicleID = null; public Integer EquipmentID = null; public String UnitNumber = null; public String VehicleType = null; public String CapacityText = null; public BigDecimal CapacityTons = null; public BigDecimal DeckFeet = null; public String Plate = null; public String VIN = null; public String GpsUnit = null; public Date InsuranceExpires = null; public Date InspectionDue = null; public String Capabilities = null; public String VehicleStatus = null; public Integer VendorID = null; public String EquipmentName = null; public String Ownership = null; public String RentalVendor = null; public String TruckCode = null; public String RigCode = null; public String BoardModule = null; public Date UpdatedAt = null; public Integer getEquipmentVehicleID() { return EquipmentVehicleID; } public EquipmentVehicle setEquipmentVehicleID(Integer value) { this.EquipmentVehicleID = value; return this; } public Integer getEquipmentID() { return EquipmentID; } public EquipmentVehicle setEquipmentID(Integer value) { this.EquipmentID = value; return this; } public String getUnitNumber() { return UnitNumber; } public EquipmentVehicle setUnitNumber(String value) { this.UnitNumber = value; return this; } public String getVehicleType() { return VehicleType; } public EquipmentVehicle setVehicleType(String value) { this.VehicleType = value; return this; } public String getCapacityText() { return CapacityText; } public EquipmentVehicle setCapacityText(String value) { this.CapacityText = value; return this; } public BigDecimal getCapacityTons() { return CapacityTons; } public EquipmentVehicle setCapacityTons(BigDecimal value) { this.CapacityTons = value; return this; } public BigDecimal getDeckFeet() { return DeckFeet; } public EquipmentVehicle setDeckFeet(BigDecimal value) { this.DeckFeet = value; return this; } public String getPlate() { return Plate; } public EquipmentVehicle setPlate(String value) { this.Plate = value; return this; } public String getVin() { return VIN; } public EquipmentVehicle setVin(String value) { this.VIN = value; return this; } public String getGpsUnit() { return GpsUnit; } public EquipmentVehicle setGpsUnit(String value) { this.GpsUnit = value; return this; } public Date getInsuranceExpires() { return InsuranceExpires; } public EquipmentVehicle setInsuranceExpires(Date value) { this.InsuranceExpires = value; return this; } public Date getInspectionDue() { return InspectionDue; } public EquipmentVehicle setInspectionDue(Date value) { this.InspectionDue = value; return this; } public String getCapabilities() { return Capabilities; } public EquipmentVehicle setCapabilities(String value) { this.Capabilities = value; return this; } public String getVehicleStatus() { return VehicleStatus; } public EquipmentVehicle setVehicleStatus(String value) { this.VehicleStatus = value; return this; } public Integer getVendorID() { return VendorID; } public EquipmentVehicle setVendorID(Integer value) { this.VendorID = value; return this; } public String getEquipmentName() { return EquipmentName; } public EquipmentVehicle setEquipmentName(String value) { this.EquipmentName = value; return this; } public String getOwnership() { return Ownership; } public EquipmentVehicle setOwnership(String value) { this.Ownership = value; return this; } public String getRentalVendor() { return RentalVendor; } public EquipmentVehicle setRentalVendor(String value) { this.RentalVendor = value; return this; } public String getTruckCode() { return TruckCode; } public EquipmentVehicle setTruckCode(String value) { this.TruckCode = value; return this; } public String getRigCode() { return RigCode; } public EquipmentVehicle setRigCode(String value) { this.RigCode = value; return this; } public String getBoardModule() { return BoardModule; } public EquipmentVehicle setBoardModule(String value) { this.BoardModule = value; return this; } public Date getUpdatedAt() { return UpdatedAt; } public EquipmentVehicle setUpdatedAt(Date value) { this.UpdatedAt = value; return this; } } }