(* Options: Date: 2026-01-25 14:22:47 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: HoleFinanzaemterAsync.* //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 tax offices for a specified federal state. /// [] [] type HoleFinanzaemterBase() = interface IGet /// ///The state number of the tax offices. /// [] member val FinanzamtLandNummer:String = null with get,set /// ///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 tax office. /// [] [] type Finanzamt() = inherit FinanzamtBase() /// ///Represents a structure that encapsulates a list of German tax offices. /// [] [] type EricHoleFinanzaemter() = /// ///The list of German tax offices. /// [] member val Finanzaemter: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 the list of federal tax offices for a specified state. /// [] [] type HoleFinanzaemterResponse() = inherit EricFehlerCodeResponse() /// ///The list of federal tax offices for a specified state. /// [] member val Rueckgabe:EricHoleFinanzaemter = null with get,set /// ///An asynchronous service to get the list of tax offices for a specified federal state. /// [] [] [] type HoleFinanzaemterAsync() = inherit HoleFinanzaemterBase() interface IReturn