(* Options: Date: 2026-09-09 10:59:32 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: Authenticate.* //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 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 AuthenticateResult() = /// ///Session token to use in successive calls to the services. /// [] member val SessionToken:String = null with get,set [] type AuthenticateResponse() = inherit OperationResult() [] [] type Authenticate() = interface IReturn /// ///User name for your account. /// [] member val UserName:String = null with get,set /// ///Password provided by your supplier. /// [] member val Password:String = null with get,set