' Options: 'Date: 2026-09-09 11:03:06 'Version: 10.08 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://services.acct.2service.nl ' '''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: GetShipments.* '''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 _2Service.Webservices.ServiceModel.Dealers Imports _2Service.Webservices.ServiceModel Namespace Global Namespace _2Service.Webservices.ServiceModel Public Partial Class OperationResult ''' '''Specifies if the operation was successful. ''' Public Overridable Property IsSuccessful As Boolean ''' '''States error message in case of unsuccessful operation. ''' Public Overridable Property ErrorMessage As String End Class Public Partial Class OperationResult(Of T) Inherits OperationResult ''' '''Result value ''' Public Overridable Property Result As T End Class End Namespace Namespace _2Service.Webservices.ServiceModel.Dealers Public Partial Class AuthenticatedRequest ''' '''Session token received from successful authentication. ''' Public Overridable Property SessionToken As String End Class Public Partial Class GetShipments Inherits AuthenticatedRequest Implements IReturn(Of ShipmentsResponse) ''' '''Start of date range to retrieve shipments for. ''' Public Overridable Property DateFrom As Date ''' '''End of date range to retrieve shipments for. ''' Public Overridable Property DateTo As Date? End Class Public Partial Class ShipmentsResponse Inherits OperationResult(Of List(Of ShipmentResult)) End Class End Namespace End Namespace