(* Options: Date: 2026-01-25 15:45:51 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: HoleFinanzamtsdatenAsync.* //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 tax office information for a specified Federal Tax Office Number. /// [] [] type HoleFinanzamtsdatenBase() = interface IGet /// ///The Federal Tax Office Number. /// [] member val BufaNr:String = null with get,set /// ///Represents a list of Adresse items. /// [] type AdresseListe() = class end /// ///Represents a list of business contacts. /// [] type KontaktListe() = class end /// ///Represents a list of bank details /// [] type BankverbindungListe() = class end /// ///Represents a list of information on the opening hours. /// [] type OeffnungszeitListe() = class end /// ///Represents a list of comments. /// [] type BemerkungListe() = class end /// ///Represents Represents a central processing office. /// [] [] type Hauptstelle() = /// ///The Federal Tax Office (Bundesfinanzamt) identification number of the office. /// [] member val BuFaNr:String = null with get,set /// ///The name of the office. /// [] member val Name:String = null with get,set /// ///Represents a structure that encapsulates details of fiscal authorities. /// [] [] type Finanzamtsdaten() = /// ///The Federal Tax Office (Bundesfinanzamt) identification number of the fiscal authority. /// [] member val BuFaNr:String = null with get,set /// ///The name of the fiscal authority. /// [] member val Name:String = null with get,set /// ///The list of addresses of the fiscal authority. /// [] member val AdresseListe:AdresseListe = null with get,set /// ///The list of business contacts of the fiscal authority. /// [] member val KontaktListe:KontaktListe = null with get,set /// ///The list of bank accounts of the fiscal authority. /// [] member val BankverbindungListe:BankverbindungListe = null with get,set /// ///The opening hours of the fiscal authority. /// [] member val OeffnungszeitListe:OeffnungszeitListe = null with get,set /// ///The list of comments of the fiscal authority. /// [] member val BemerkungListe:BemerkungListe = null with get,set /// ///The central processing office of the fiscal authority. /// [] member val Hauptstelle:Hauptstelle = null with get,set /// ///The branch of the fiscal authority. /// [] member val Aussenstelle:String = null with get,set /// ///Represents a structure that encapsulates the list of details of fiscal authorities. /// [] [] type EricHoleFinanzamtsdaten() = /// ///The version of the information structure. /// [] member val Version:UInt32 = new UInt32() with get,set /// ///The details of the fiscal authority. /// [] member val Finanzamtsdaten:Finanzamtsdaten = 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 all tax office numbers. /// [] [] type HoleFinanzamtsdatenResponse() = inherit EricFehlerCodeResponse() /// ///The details of a specified tax office. /// [] member val Rueckgabe:EricHoleFinanzamtsdaten = null with get,set /// ///An asynchronous service to get tax office information for a specified Federal Tax Office Number. /// [] [] [] type HoleFinanzamtsdatenAsync() = inherit HoleFinanzamtsdatenBase() interface IReturn