' Options: 'Date: 2026-01-25 22:23:59 'Version: 8.90 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://taxfiling.staging.pwc.de ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: HoleFinanzamtsdatenAsync.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Net Imports PwC.xEric.Core.Services.Contracts.Requests Imports PwC.xEric.Core.Domain.Concretes.Models Imports PwC.xEric.Core.Services.Contracts.Responses Namespace Global Namespace PwC.xEric.Core.Domain.Concretes.Models ''' '''Represents a list of Adresse items. ''' Public Partial Class AdresseListe End Class ''' '''Represents a list of bank details ''' Public Partial Class BankverbindungListe End Class ''' '''Represents a list of comments. ''' Public Partial Class BemerkungListe End Class ''' '''Represents a structure that encapsulates the list of details of fiscal authorities. ''' Public Partial Class EricHoleFinanzamtsdaten ''' '''The version of the information structure. ''' Public Overridable Property Version As UInt32 ''' '''The details of the fiscal authority. ''' Public Overridable Property Finanzamtsdaten As Finanzamtsdaten End Class ''' '''Represents a structure that encapsulates details of fiscal authorities. ''' Public Partial Class Finanzamtsdaten ''' '''The Federal Tax Office (Bundesfinanzamt) identification number of the fiscal authority. ''' Public Overridable Property BuFaNr As String ''' '''The name of the fiscal authority. ''' Public Overridable Property Name As String ''' '''The list of addresses of the fiscal authority. ''' Public Overridable Property AdresseListe As AdresseListe ''' '''The list of business contacts of the fiscal authority. ''' Public Overridable Property KontaktListe As KontaktListe ''' '''The list of bank accounts of the fiscal authority. ''' Public Overridable Property BankverbindungListe As BankverbindungListe ''' '''The opening hours of the fiscal authority. ''' Public Overridable Property OeffnungszeitListe As OeffnungszeitListe ''' '''The list of comments of the fiscal authority. ''' Public Overridable Property BemerkungListe As BemerkungListe ''' '''The central processing office of the fiscal authority. ''' Public Overridable Property Hauptstelle As Hauptstelle ''' '''The branch of the fiscal authority. ''' Public Overridable Property Aussenstelle As String End Class ''' '''Represents Represents a central processing office. ''' Public Partial Class Hauptstelle ''' '''The Federal Tax Office (Bundesfinanzamt) identification number of the office. ''' Public Overridable Property BuFaNr As String ''' '''The name of the office. ''' Public Overridable Property Name As String End Class ''' '''Represents a list of business contacts. ''' Public Partial Class KontaktListe End Class ''' '''Represents a list of information on the opening hours. ''' Public Partial Class OeffnungszeitListe End Class End Namespace Namespace PwC.xEric.Core.Services.Contracts.Requests ''' '''An asynchronous service to get tax office information for a specified Federal Tax Office Number. ''' Public Partial Class HoleFinanzamtsdatenAsync Inherits HoleFinanzamtsdatenBase Implements IReturn(Of HoleFinanzamtsdatenResponse) End Class ''' '''A base service to get tax office information for a specified Federal Tax Office Number. ''' Public Partial Class HoleFinanzamtsdatenBase Implements IGet ''' '''The Federal Tax Office Number. ''' Public Overridable Property BufaNr As String End Class End Namespace Namespace PwC.xEric.Core.Services.Contracts.Responses ''' '''Represent a base response that encapsulate any ERiC API function return value. ''' Public Partial Class EricFehlerCodeResponse Inherits ServiceReponseBase ''' '''The status code that the ERiC API function returns. ''' Public Overridable Property StatusCode As EricFehlerCode ''' '''The status message that the ERiC API function returns. ''' Public Overridable Property StatusText As String End Class ''' '''Represents a type that encapsulates the return values of the ERiC API function, which retrieves all tax office numbers. ''' Public Partial Class HoleFinanzamtsdatenResponse Inherits EricFehlerCodeResponse ''' '''The details of a specified tax office. ''' Public Overridable Property Rueckgabe As EricHoleFinanzamtsdaten End Class End Namespace End Namespace