(* Options: Date: 2026-06-01 15:35:13 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://imzagerservices.eyyubiye.bel.tr //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: UploadDocument.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace DaB.Imzager.Services.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Security.Cryptography.X509Certificates open System.Xml [] type UploadDocumentResponse() = member val Result:String = null with get,set member val ServiceSuccessResult:Boolean = new Boolean() with get,set member val ErrorMesage:String = null with get,set [] [] type UploadDocument() = interface IReturn member val ClientKey:String = null with get,set member val AuthorizationID:String = null with get,set member val UserSSN:String = null with get,set member val FileName:String = null with get,set member val DocumentContent:Byte[] = [||] with get,set member val MimeType:String = null with get,set