/* Options: Date: 2025-09-14 06:25:34 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.trackunit.com/public //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetReportKeyHistory.* //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="/report/keyhistory", Verbs="GET POST") @DataContract public static class GetReportKeyHistory implements IReturn { @DataMember public String keyId = null; @DataMember public Date from = null; @DataMember public Date to = null; public String getKeyId() { return keyId; } public GetReportKeyHistory setKeyId(String value) { this.keyId = value; return this; } public Date getFrom() { return from; } public GetReportKeyHistory setFrom(Date value) { this.from = value; return this; } public Date getTo() { return to; } public GetReportKeyHistory setTo(Date value) { this.to = value; return this; } private static Object responseType = GetReportKeyHistoryResponse.class; public Object getResponseType() { return responseType; } } @DataContract public static class GetReportKeyHistoryResponse { @DataMember public ArrayList list = null; @DataMember public ResponseStatus responseStatus = null; public ArrayList getList() { return list; } public GetReportKeyHistoryResponse setList(ArrayList value) { this.list = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public GetReportKeyHistoryResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } @DataContract public static class Location { @DataMember public Double latitude = null; @DataMember public Double longitude = null; public Double getLatitude() { return latitude; } public Location setLatitude(Double value) { this.latitude = value; return this; } public Double getLongitude() { return longitude; } public Location setLongitude(Double value) { this.longitude = value; return this; } } @DataContract public static class Address { @DataMember public String country = null; @DataMember public String zipCode = null; @DataMember public String city = null; @DataMember public String streetAddress = null; public String getCountry() { return country; } public Address setCountry(String value) { this.country = value; return this; } public String getZipCode() { return zipCode; } public Address setZipCode(String value) { this.zipCode = value; return this; } public String getCity() { return city; } public Address setCity(String value) { this.city = value; return this; } public String getStreetAddress() { return streetAddress; } public Address setStreetAddress(String value) { this.streetAddress = value; return this; } } @DataContract public static class KeyHistory { @DataMember public String unitId = null; @DataMember public Date time = null; @DataMember public Location location = null; @DataMember public Address address = null; @DataMember public Integer heading = null; @DataMember public Double speed = null; @DataMember public Double km = null; @DataMember public Double run1 = null; @DataMember public Double run2 = null; @DataMember public Double runOdo = null; @DataMember public Double temperature1 = null; @DataMember public Double temperature2 = null; @DataMember public Boolean input1 = null; @DataMember public Boolean input2 = null; @DataMember public Boolean output3 = null; @DataMember public Double batteryLevel = null; @DataMember public Double externalPower = null; public String getUnitId() { return unitId; } public KeyHistory setUnitId(String value) { this.unitId = value; return this; } public Date getTime() { return time; } public KeyHistory setTime(Date value) { this.time = value; return this; } public Location getLocation() { return location; } public KeyHistory setLocation(Location value) { this.location = value; return this; } public Address getAddress() { return address; } public KeyHistory setAddress(Address value) { this.address = value; return this; } public Integer getHeading() { return heading; } public KeyHistory setHeading(Integer value) { this.heading = value; return this; } public Double getSpeed() { return speed; } public KeyHistory setSpeed(Double value) { this.speed = value; return this; } public Double getKm() { return km; } public KeyHistory setKm(Double value) { this.km = value; return this; } public Double getRun1() { return run1; } public KeyHistory setRun1(Double value) { this.run1 = value; return this; } public Double getRun2() { return run2; } public KeyHistory setRun2(Double value) { this.run2 = value; return this; } public Double getRunOdo() { return runOdo; } public KeyHistory setRunOdo(Double value) { this.runOdo = value; return this; } public Double getTemperature1() { return temperature1; } public KeyHistory setTemperature1(Double value) { this.temperature1 = value; return this; } public Double getTemperature2() { return temperature2; } public KeyHistory setTemperature2(Double value) { this.temperature2 = value; return this; } public Boolean isInput1() { return input1; } public KeyHistory setInput1(Boolean value) { this.input1 = value; return this; } public Boolean isInput2() { return input2; } public KeyHistory setInput2(Boolean value) { this.input2 = value; return this; } public Boolean isOutput3() { return output3; } public KeyHistory setOutput3(Boolean value) { this.output3 = value; return this; } public Double getBatteryLevel() { return batteryLevel; } public KeyHistory setBatteryLevel(Double value) { this.batteryLevel = value; return this; } public Double getExternalPower() { return externalPower; } public KeyHistory setExternalPower(Double value) { this.externalPower = value; return this; } } }