(* Options: Date: 2026-01-25 04:20:38 Version: 8.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.staging.pwc.de //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: DekodiereDatenAsync.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace PwC.DigitalHub.Utilities.Domain.IO.Contracts open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Net /// ///Represents a base class for a file with raw data. /// [] [] type FileBase() = /// ///The raw data content of the file in bytes. /// [] member val Content:Byte[] = null with get,set /// ///Represents a portal certificate that is protected by a password. /// [] [] type PortalCertificate() = inherit FileBase() /// ///The file name of the certificate. /// [] [] member val Name:String = null with get,set /// ///The password to protect the certificate from unauthorized access. /// [] [] member val Pin:String = null with get,set /// ///The description of the certificate. /// [] [] member val Description:String = null with get,set /// ///Tags that can be used to label or identify the certificate. /// [] member val Tags:ResizeArray = null with get,set [] type Base64EingabeData() = member val Id:String = null with get,set member val Base64Eingabe:String = null with get,set member val Index:Int32 = new Int32() with get,set /// ///A base service to decrypt data using a specified portal certificate. /// [] [] type DekodiereDatenBase() = interface IPost /// ///The authentification certificate. /// [] member val Zertifikat:PortalCertificate = null with get,set /// ///The base-64-encrypted data that is retrieved with the 'ElsterDatenabholung' operation.It is usually located under the element /Elster/DatenTeil/Nutzdatenblock/Nutzdaten/Datenabholung/Abholung/Datenpaket of the ELSTER document. /// [] member val Data:Base64EingabeData = null with get,set [] type IHasIndex = abstract Index:Int32 with get,set [] type ISecuredCertificate = abstract Pin:String with get,set /// ///Represent a base response that encapsulate any ERiC API function return value. /// [] [] type EricFehlerCodeResponse() = inherit ServiceReponseBase() /// ///The status code that the ERiC API function returns. /// [] member val StatusCode:EricFehlerCode = new EricFehlerCode() with get,set /// ///The status message that the ERiC API function returns. /// [] member val StatusText:String = null with get,set /// ///Represents a type that encapsulates a decoded value. /// [] [] type DekodiereDatenResponse() = inherit EricFehlerCodeResponse() /// ///The decoded value. /// [] member val Rueckgabe:String = null with get,set /// ///An asynchronous service to decrypt a batch of data using a specified portal certificate. /// [] [] [] type DekodiereDatenAsync() = inherit DekodiereDatenBase() interface IReturn