| GET | /pulsit/moduletriphistory |
|---|
import Foundation
import ServiceStack
public class PulsitModuleTripHistoryRequest : ApiServiceRequest
{
public var pulsitModuleId:String
public var startDate:String
public var endDate:String
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case pulsitModuleId
case startDate
case endDate
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
pulsitModuleId = try container.decodeIfPresent(String.self, forKey: .pulsitModuleId)
startDate = try container.decodeIfPresent(String.self, forKey: .startDate)
endDate = try container.decodeIfPresent(String.self, forKey: .endDate)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if pulsitModuleId != nil { try container.encode(pulsitModuleId, forKey: .pulsitModuleId) }
if startDate != nil { try container.encode(startDate, forKey: .startDate) }
if endDate != nil { try container.encode(endDate, forKey: .endDate) }
}
}
public class ApiServiceRequest : IServiceRequest, IHasApiKey, Codable
{
/**
* The API Key required for authentication
*/
// @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true)
public var apiKey:String
required public init(){}
}
public class PulsitModuleTripHistoryResponse : ApiServiceResponse
{
public var trips:[PulsitTripHistoryItem] = []
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case trips
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
trips = try container.decodeIfPresent([PulsitTripHistoryItem].self, forKey: .trips) ?? []
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if trips.count > 0 { try container.encode(trips, forKey: .trips) }
}
}
public class ApiServiceResponse : IServiceResponse, Codable
{
public var Description:String
public var heading:String
public var wasSuccessful:Bool
//modelState:Object ignored. Type could not be extended in Swift
required public init(){}
}
public class PulsitTripHistoryItem : Codable
{
public var tripNumber:String
public var startPulsitId:String
public var startEventTime:Date
public var startLatitude:Double
public var startLongitude:Double
public var startAddress:String
public var stopPulsitId:String
public var stopEventTime:Date
public var stopLatitude:Double
public var stopLongitude:Double
public var stopAddress:String
public var tripMinutes:Double
required public init(){}
}
Swift PulsitModuleTripHistoryRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /pulsit/moduletriphistory HTTP/1.1 Host: galaxymobile.api.client.prod.86degrees.com Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<PulsitModuleTripHistoryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebService.ClientApi.Services">
<Description xmlns="http://schemas.datacontract.org/2004/07/CommonService.Api.Models.Base">String</Description>
<Heading xmlns="http://schemas.datacontract.org/2004/07/CommonService.Api.Models.Base">String</Heading>
<ModelState xmlns="http://schemas.datacontract.org/2004/07/CommonService.Api.Models.Base" />
<WasSuccessful xmlns="http://schemas.datacontract.org/2004/07/CommonService.Api.Models.Base">false</WasSuccessful>
<Trips>
<PulsitTripHistoryItem>
<StartAddress>String</StartAddress>
<StartEventTime>0001-01-01T00:00:00</StartEventTime>
<StartLatitude>0</StartLatitude>
<StartLongitude>0</StartLongitude>
<StartPulsitId>String</StartPulsitId>
<StopAddress>String</StopAddress>
<StopEventTime>0001-01-01T00:00:00</StopEventTime>
<StopLatitude>0</StopLatitude>
<StopLongitude>0</StopLongitude>
<StopPulsitId>String</StopPulsitId>
<TripMinutes>0</TripMinutes>
<TripNumber>String</TripNumber>
</PulsitTripHistoryItem>
</Trips>
</PulsitModuleTripHistoryResponse>