(* Options: Date: 2026-01-25 11:27:05 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: BatchCheckElsterAsync.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace PwC.xEric.Core.Domain.Concretes.Models 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 structure that encapsulates a tax declaration. /// [] [] type TaxData() = /// ///The unique identifier of the tax data. /// [] member val Id:String = null with get,set /// ///The XML-based tax declaration. /// [] member val Content:String = null with get,set /// ///A base service to perform basic checks on a batch of tax data. /// [] [] type BatchCheckElsterBase() = interface IPost /// ///The batch of ELSTER tax data to check. /// [] member val Data:ResizeArray = null with get,set [] type IHasIndex = abstract Index:Int32 with get,set /// ///Specifies a service response from an ERiC service operation. /// [] [] type ServiceReponseBase() = /// ///The unique identifier of the response. /// [] member val Id:String = null with get,set /// ///The position of the response element in an indexed collection. /// [] member val Index:Int32 = new Int32() with get,set /// ///Metadata that contains structured error information on the service response. /// [] member val ResponseStatus:ResponseStatus = null with get,set /// ///Represents a type that encapulates the state of a provided ELSTER tax data. /// [] [] type ElsterCheckResponse() = inherit ServiceReponseBase() /// ///Checks whether a portal certificate is required to sign the tax data. /// [] member val ZertifikatErforderlich:Boolean = new Boolean() with get,set /// ///Checks whether a Manufacturer ID has been provided for the tax data. /// [] member val HatHerstellerId:Boolean = new Boolean() with get,set /// ///Checks whether a data provider has been provided for the tax data. /// [] member val HatDatenlieferant:Boolean = new Boolean() with get,set /// ///Checks whether the PDF-based transfer protocol for the tax data can be printed out for the type of tax data. /// [] member val TransferProtokollDruckbar:Boolean = new Boolean() with get,set /// ///An asynchronous service to perform basic checks on a batch of tax data. /// [] [] [] type BatchCheckElsterAsync() = inherit BatchCheckElsterBase() interface IReturn>