(* Options: Date: 2026-09-09 11:04:37 Version: 10.08 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://services.acct.2service.nl //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetShipments.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace _2Service.Webservices.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type AuthenticatedRequest() = /// ///Session token received from successful authentication. /// [] member val SessionToken:String = null with get,set [] type OperationResult() = /// ///Specifies if the operation was successful. /// [] member val IsSuccessful:Boolean = new Boolean() with get,set /// ///States error message in case of unsuccessful operation. /// [] member val ErrorMessage:String = null with get,set [] type OperationResult() = inherit OperationResult() /// ///Result value /// [] member val Result:T = null with get,set [] type ShipmentsResponse() = inherit OperationResult>() [] [] type GetShipments() = inherit AuthenticatedRequest() interface IReturn /// ///Start of date range to retrieve shipments for. /// [] member val DateFrom:DateTime = new DateTime() with get,set /// ///End of date range to retrieve shipments for. /// [] member val DateTo:Nullable = new Nullable() with get,set