/* Options: Date: 2025-12-06 06:17:11 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.client.prod.86degrees.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PulsitModuleTripHistoryRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/pulsit/moduletriphistory", Verbs="GET") public static class PulsitModuleTripHistoryRequest extends ApiServiceRequest implements IReturn { public String PulsitModuleId = null; public String StartDate = null; public String EndDate = null; public String getPulsitModuleId() { return PulsitModuleId; } public PulsitModuleTripHistoryRequest setPulsitModuleId(String value) { this.PulsitModuleId = value; return this; } public String getStartDate() { return StartDate; } public PulsitModuleTripHistoryRequest setStartDate(String value) { this.StartDate = value; return this; } public String getEndDate() { return EndDate; } public PulsitModuleTripHistoryRequest setEndDate(String value) { this.EndDate = value; return this; } private static Object responseType = PulsitModuleTripHistoryResponse.class; public Object getResponseType() { return responseType; } } public static class PulsitModuleTripHistoryResponse extends ApiServiceResponse { public ArrayList Trips = null; public ArrayList getTrips() { return Trips; } public PulsitModuleTripHistoryResponse setTrips(ArrayList value) { this.Trips = value; return this; } } public static class ApiServiceRequest implements IServiceRequest, IHasApiKey { /** * The API Key required for authentication */ @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) public String ApiKey = null; public String getApiKey() { return ApiKey; } public ApiServiceRequest setApiKey(String value) { this.ApiKey = value; return this; } } public static interface IServiceRequest { } public static interface IHasApiKey { public String ApiKey = null; } public static class PulsitTripHistoryItem { public String TripNumber = null; public String StartPulsitId = null; public Date StartEventTime = null; public Double StartLatitude = null; public Double StartLongitude = null; public String StartAddress = null; public String StopPulsitId = null; public Date StopEventTime = null; public Double StopLatitude = null; public Double StopLongitude = null; public String StopAddress = null; public Double TripMinutes = null; public String getTripNumber() { return TripNumber; } public PulsitTripHistoryItem setTripNumber(String value) { this.TripNumber = value; return this; } public String getStartPulsitId() { return StartPulsitId; } public PulsitTripHistoryItem setStartPulsitId(String value) { this.StartPulsitId = value; return this; } public Date getStartEventTime() { return StartEventTime; } public PulsitTripHistoryItem setStartEventTime(Date value) { this.StartEventTime = value; return this; } public Double getStartLatitude() { return StartLatitude; } public PulsitTripHistoryItem setStartLatitude(Double value) { this.StartLatitude = value; return this; } public Double getStartLongitude() { return StartLongitude; } public PulsitTripHistoryItem setStartLongitude(Double value) { this.StartLongitude = value; return this; } public String getStartAddress() { return StartAddress; } public PulsitTripHistoryItem setStartAddress(String value) { this.StartAddress = value; return this; } public String getStopPulsitId() { return StopPulsitId; } public PulsitTripHistoryItem setStopPulsitId(String value) { this.StopPulsitId = value; return this; } public Date getStopEventTime() { return StopEventTime; } public PulsitTripHistoryItem setStopEventTime(Date value) { this.StopEventTime = value; return this; } public Double getStopLatitude() { return StopLatitude; } public PulsitTripHistoryItem setStopLatitude(Double value) { this.StopLatitude = value; return this; } public Double getStopLongitude() { return StopLongitude; } public PulsitTripHistoryItem setStopLongitude(Double value) { this.StopLongitude = value; return this; } public String getStopAddress() { return StopAddress; } public PulsitTripHistoryItem setStopAddress(String value) { this.StopAddress = value; return this; } public Double getTripMinutes() { return TripMinutes; } public PulsitTripHistoryItem setTripMinutes(Double value) { this.TripMinutes = value; return this; } } public static class ApiServiceResponse implements IServiceResponse { public String Description = null; public String Heading = null; public Boolean WasSuccessful = null; public Object ModelState = null; public String getDescription() { return Description; } public ApiServiceResponse setDescription(String value) { this.Description = value; return this; } public String getHeading() { return Heading; } public ApiServiceResponse setHeading(String value) { this.Heading = value; return this; } public Boolean isWasSuccessful() { return WasSuccessful; } public ApiServiceResponse setWasSuccessful(Boolean value) { this.WasSuccessful = value; return this; } public Object getModelState() { return ModelState; } public ApiServiceResponse setModelState(Object value) { this.ModelState = value; return this; } } }