GalaxyMobile App API

<back to all web services

PulsitModuleTripHistoryRequest

Requires Authentication
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, IHasDeviceInfo, IHasClientId, Codable
{
    /**
    * The API Key required for authentication
    */
    // @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true)
    public var apiKey:String

    /**
    * Latitude of the user making this request
    */
    // @ApiMember(DataType="double", Description="Latitude of the user making this request")
    public var latitude:Double

    /**
    * Longitude of the user making this request
    */
    // @ApiMember(DataType="double", Description="Longitude of the user making this request")
    public var longitude:Double

    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 startEventTimeValue:Date
    public var startEventTime:String
    public var startLatitude:Double
    public var startLongitude:Double
    public var startAddress:String
    public var stopPulsitId:String
    public var stopEventTime:String
    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

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /xml/reply/PulsitModuleTripHistoryRequest HTTP/1.1 
Host: galaxymobile.api.dev.86degrees.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<PulsitModuleTripHistoryRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebService.ServiceModel.Pulsit">
  <ApiKey xmlns="http://schemas.datacontract.org/2004/07/WebService.ServiceModel.Base">String</ApiKey>
  <Latitude xmlns="http://schemas.datacontract.org/2004/07/WebService.ServiceModel.Base">0</Latitude>
  <Longitude xmlns="http://schemas.datacontract.org/2004/07/WebService.ServiceModel.Base">0</Longitude>
  <EndDate>String</EndDate>
  <PulsitModuleId>String</PulsitModuleId>
  <StartDate>String</StartDate>
</PulsitModuleTripHistoryRequest>
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.ServiceModel.Pulsit">
  <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>String</StartEventTime>
      <StartEventTimeValue>0001-01-01T00:00:00</StartEventTimeValue>
      <StartLatitude>0</StartLatitude>
      <StartLongitude>0</StartLongitude>
      <StartPulsitId>String</StartPulsitId>
      <StopAddress>String</StopAddress>
      <StopEventTime>String</StopEventTime>
      <StopLatitude>0</StopLatitude>
      <StopLongitude>0</StopLongitude>
      <StopPulsitId>String</StopPulsitId>
      <TripMinutes>0</TripMinutes>
      <TripNumber>String</TripNumber>
    </PulsitTripHistoryItem>
  </Trips>
</PulsitModuleTripHistoryResponse>