(* Options: Date: 2024-12-03 12:21:38 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.paysecure.acculynk.net //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: DSInitializeRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Paysecure.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type RequestorCredentials() = [] member val MerchantId:String = null with get,set [] member val UserName:String = null with get,set [] member val Password:String = null with get,set [] member val Version:String = null with get,set type DataStoreScope = | AllMerchants = 0 | SingleMerchant = 1 [] type DataStoreFor() = member val StoreScope:DataStoreScope = new DataStoreScope() with get,set member val Value:String = null with get,set [] type DSInitialize() = member val ErrorCode:String = null with get,set member val ErrorMessage:String = null with get,set [] [] type DSInitializeRequest() = interface IReturn member val Credentials:RequestorCredentials = null with get,set member val Scope:DataStoreFor = null with get,set