import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
@DataContract
public static class GetReportTrip
{
@DataMember
public String unitId = null;
@DataMember
public String keyId = null;
@DataMember
public Date dateFrom = null;
@DataMember
public Date dateTo = null;
public String getUnitId() { return unitId; }
public GetReportTrip setUnitId(String value) { this.unitId = value; return this; }
public String getKeyId() { return keyId; }
public GetReportTrip setKeyId(String value) { this.keyId = value; return this; }
public Date getDateFrom() { return dateFrom; }
public GetReportTrip setDateFrom(Date value) { this.dateFrom = value; return this; }
public Date getDateTo() { return dateTo; }
public GetReportTrip setDateTo(Date value) { this.dateTo = value; return this; }
}
@DataContract
public static class GetReportTripResponse
{
@DataMember
public ArrayList<Trip> list = null;
@DataMember
public ResponseStatus responseStatus = null;
public ArrayList<Trip> getList() { return list; }
public GetReportTripResponse setList(ArrayList<Trip> value) { this.list = value; return this; }
public ResponseStatus getResponseStatus() { return responseStatus; }
public GetReportTripResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
}
@DataContract
public static class Trip
{
@DataMember
public String unitId = null;
@DataMember
public String keyId = null;
@DataMember
public Date startTime = null;
@DataMember
public Location startLocation = null;
@DataMember
public Address startAddress = null;
@DataMember
public Double startKm = null;
@DataMember
public Double startRun1 = null;
@DataMember
public Date stopTime = null;
@DataMember
public Location stopLocation = null;
@DataMember
public Address stopAddress = null;
@DataMember
public Double stopKm = null;
@DataMember
public Double stopRun1 = null;
@DataMember
public Boolean finished = null;
@DataMember
public Double maxSpeed = null;
public String getUnitId() { return unitId; }
public Trip setUnitId(String value) { this.unitId = value; return this; }
public String getKeyId() { return keyId; }
public Trip setKeyId(String value) { this.keyId = value; return this; }
public Date getStartTime() { return startTime; }
public Trip setStartTime(Date value) { this.startTime = value; return this; }
public Location getStartLocation() { return startLocation; }
public Trip setStartLocation(Location value) { this.startLocation = value; return this; }
public Address getStartAddress() { return startAddress; }
public Trip setStartAddress(Address value) { this.startAddress = value; return this; }
public Double getStartKm() { return startKm; }
public Trip setStartKm(Double value) { this.startKm = value; return this; }
public Double getStartRun1() { return startRun1; }
public Trip setStartRun1(Double value) { this.startRun1 = value; return this; }
public Date getStopTime() { return stopTime; }
public Trip setStopTime(Date value) { this.stopTime = value; return this; }
public Location getStopLocation() { return stopLocation; }
public Trip setStopLocation(Location value) { this.stopLocation = value; return this; }
public Address getStopAddress() { return stopAddress; }
public Trip setStopAddress(Address value) { this.stopAddress = value; return this; }
public Double getStopKm() { return stopKm; }
public Trip setStopKm(Double value) { this.stopKm = value; return this; }
public Double getStopRun1() { return stopRun1; }
public Trip setStopRun1(Double value) { this.stopRun1 = value; return this; }
public Boolean isFinished() { return finished; }
public Trip setFinished(Boolean value) { this.finished = value; return this; }
public Double getMaxSpeed() { return maxSpeed; }
public Trip setMaxSpeed(Double value) { this.maxSpeed = 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; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .soap12 suffix or ?format=soap12
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /soap12 HTTP/1.1
Host: api.trackunit.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetReportTrip xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types">
<DateFrom>0001-01-01T00:00:00</DateFrom>
<DateTo>0001-01-01T00:00:00</DateTo>
<KeyId>String</KeyId>
<UnitId>String</UnitId>
</GetReportTrip>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <GetReportTripResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types"> <List> <Trip> <Finished>false</Finished> <KeyId>String</KeyId> <MaxSpeed>0</MaxSpeed> <StartAddress> <City>String</City> <Country>String</Country> <StreetAddress>String</StreetAddress> <ZipCode>String</ZipCode> </StartAddress> <StartKm>0</StartKm> <StartLocation> <Latitude>0</Latitude> <Longitude>0</Longitude> </StartLocation> <StartRun1>0</StartRun1> <StartTime>0001-01-01T00:00:00</StartTime> <StopAddress> <City>String</City> <Country>String</Country> <StreetAddress>String</StreetAddress> <ZipCode>String</ZipCode> </StopAddress> <StopKm>0</StopKm> <StopLocation> <Latitude>0</Latitude> <Longitude>0</Longitude> </StopLocation> <StopRun1>0</StopRun1> <StopTime>0001-01-01T00:00:00</StopTime> <UnitId>String</UnitId> </Trip> </List> <ResponseStatus> <ErrorCode>String</ErrorCode> <Message>String</Message> <StackTrace>String</StackTrace> <Errors> <ResponseError> <ErrorCode>String</ErrorCode> <FieldName>String</FieldName> <Message>String</Message> <Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:KeyValueOfstringstring> <d5p1:Key>String</d5p1:Key> <d5p1:Value>String</d5p1:Value> </d5p1:KeyValueOfstringstring> </Meta> </ResponseError> </Errors> <Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:KeyValueOfstringstring> <d3p1:Key>String</d3p1:Key> <d3p1:Value>String</d3p1:Value> </d3p1:KeyValueOfstringstring> </Meta> </ResponseStatus> </GetReportTripResponse> </soap12:Body> </soap12:Envelope>