| 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 .csv suffix or ?format=csv
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: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"Trips":[{"TripNumber":"String","StartPulsitId":"String","StartEventTime":"0001-01-01T00:00:00.0000000","StartLatitude":0,"StartLongitude":0,"StartAddress":"String","StopPulsitId":"String","StopEventTime":"0001-01-01T00:00:00.0000000","StopLatitude":0,"StopLongitude":0,"StopAddress":"String","TripMinutes":0}],"Description":"String","Heading":"String","WasSuccessful":false,"ModelState":{}}