(* Options: Date: 2025-06-24 22:05:20 Version: 6.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://webservices.mbukdatabase.co.uk/AddressLookup //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: AddressRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace PostcodeLookupService.ServiceModel.Types open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type LookupResult() = [] member val Addresses:Address[] = [||] with get,set [] member val errormsg:String = null with get,set [] [] [] type AddressRequest() = interface IReturn member val Version:Int32 = new Int32() with get,set /// ///Using a Postcode to return addresses. /// [] member val Postcode:String = null with get,set /// ///Optional input value to limit the return data to a specific address. /// [] member val HouseNo:String = null with get,set