(* Options: Date: 2024-04-29 04:00:24 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.pwc.de //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: BatchCheckElster.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace PwC.xEric.Core.Domain.Concretes.Models open System 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 = new ResizeArray() with get,set /// ///A synchronous service to perform basic checks on a batch of tax data. /// [] [] [] type BatchCheckElster() = inherit BatchCheckElsterBase() interface IReturn> /// ///The batch of ELSTER tax data to check. /// [] member val Data:ResizeArray = new ResizeArray() with get,set