' Options: 'Date: 2025-09-14 05:51:43 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://api.trackunit.com/public ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: GetReportTrip.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports Trackunit.API Namespace Global Namespace Trackunit.API Public Partial Class Address Public Overridable Property Country As String Public Overridable Property ZipCode As String Public Overridable Property City As String Public Overridable Property StreetAddress As String End Class Public Partial Class GetReportTrip Implements IReturn(Of GetReportTripResponse) Public Overridable Property UnitId As String Public Overridable Property KeyId As String Public Overridable Property DateFrom As Date? Public Overridable Property DateTo As Date? End Class Public Partial Class GetReportTripResponse Public Overridable Property List As List(Of Trip) Public Overridable Property ResponseStatus As ResponseStatus End Class Public Partial Class Location Public Overridable Property Latitude As Double Public Overridable Property Longitude As Double End Class Public Partial Class Trip Public Overridable Property UnitId As String Public Overridable Property KeyId As String Public Overridable Property StartTime As Date Public Overridable Property StartLocation As Location Public Overridable Property StartAddress As Address Public Overridable Property StartKm As Double Public Overridable Property StartRun1 As Double Public Overridable Property StopTime As Date Public Overridable Property StopLocation As Location Public Overridable Property StopAddress As Address Public Overridable Property StopKm As Double Public Overridable Property StopRun1 As Double Public Overridable Property Finished As Boolean Public Overridable Property MaxSpeed As Double? End Class End Namespace End Namespace