(* Options: Date: 2026-01-25 18:51:15 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: HoleTestfinanzaemterAsync.* //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 /// ///A base service to get the list of test tax offices for a specified federal state. /// [] [] type HoleTestfinanzaemterBase() = interface IGet /// ///Represents the base class of a German tax office. /// [] [] type FinanzamtBase() = /// ///The identification number of the German tax office. /// [] member val BuFaNummer:String = null with get,set /// ///The name of the German tax office. /// [] member val Name:String = null with get,set /// ///Represents a German test tax office. /// [] [] type Testfinanzamt() = inherit FinanzamtBase() /// ///Represents a structure that encapsulates a list of German test tax offices. /// [] [] type EricHoleTestfinanzaemter() = /// ///The list of test German tax offices. /// [] member val TestFinanzaemeter:ResizeArray = null 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 the return values of the ERiC API function, which retrieves list of test fiscal authoririties. /// [] [] type HoleTestfinanzaemterResponse() = inherit EricFehlerCodeResponse() /// ///The list of test fiscal authoririties. /// [] member val Rueckgabe:EricHoleTestfinanzaemter = null with get,set /// ///An asynchronous service to get the list of test tax offices for a specified federal state. /// [] [] [] type HoleTestfinanzaemterAsync() = inherit HoleTestfinanzaemterBase() interface IReturn