(* Options: Date: 2025-12-06 06:46:00 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.1fetch.co.za //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetProofOfDelivery.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace WebService.ClientServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ApiServiceRequest() = /// ///The API Key required for authentication /// [] member val ApiKey:String = null with get,set [] type IServiceRequest = interface end [] type IHasApiKey = abstract ApiKey:String with get,set [] type ILogRequest = interface end [] [] type GetProofOfDelivery() = inherit ApiServiceRequest() /// ///The ID of the order /// [] member val OrderId:Guid = new Guid() with get,set /// ///The 1F waybill for the order /// [] member val Waybill:String = null with get,set