' Options:
'Date: 2026-01-25 03:22:23
'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: HoleFinanzamtLandNummern.*
'''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 structure that encapsulates a list of state details of German tax offices.
'''
Public Partial Class EricHoleFinanzamtLandNummern
'''
'''The list of state details of German tax offices.
'''
Public Overridable Property FinanzamtLaender As List(Of FinanzamtLand) = New List(Of FinanzamtLand)
End Class
'''
'''Represents the state details of a German tax office.
'''
Public Partial Class FinanzamtLand
'''
'''The identification number of the state.
'''
Public Overridable Property FinanzamtLandNummer As String
'''
'''The name of the state.
'''
Public Overridable Property Name As String
End Class
End Namespace
Namespace PwC.xEric.Core.Services.Contracts.Requests
'''
'''A synchronous service to get the list of tax office numbers for a specified federal state.
'''
Public Partial Class HoleFinanzamtLandNummern
Inherits HoleFinanzamtLandNummernBase
Implements IReturn(Of HoleFinanzamtLandNummernResponse)
End Class
'''
'''A base service to get the list of tax office numbers for a specified federal state.
'''
Public Partial Class HoleFinanzamtLandNummernBase
Implements IGet
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 HoleFinanzamtLandNummernResponse
Inherits EricFehlerCodeResponse
'''
'''The list of all tax office numbers.
'''
Public Overridable Property Rueckgabe As EricHoleFinanzamtLandNummern
End Class
End Namespace
End Namespace