' Options:
'Date: 2026-01-25 01:09:48
'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: MakeElsterStnrAsync.*
'''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.Services.Contracts.Responses
Namespace Global
Namespace PwC.xEric.Core.Services.Contracts.Requests
'''
'''An asynchronous service to create an ELSTER-compatible tax number from a specified tax number.
'''
Public Partial Class MakeElsterStnrAsync
Inherits MakeElsterStnrBase
Implements IReturn(Of MakeElsterStnrResponse)
End Class
'''
'''A base service to create an ELSTER-compatible tax number from a specified tax number.
'''
Public Partial Class MakeElsterStnrBase
Implements IPost
'''
'''The format of the tax number as indicated in the official letter.
'''
Public Overridable Property SteuernrBescheid As String
'''
'''The two-digit state number (corresponds to the first two digits of the Federal Tax Office number).
'''
Public Overridable Property Landesnr As String
'''
'''The four-digit Federal Tax Office Number.
'''
Public Overridable Property Bundesfinanzamtsnr 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 creates an ELSTER-compatible tax number from a specified tax number.
'''
Public Partial Class MakeElsterStnrResponse
Inherits EricFehlerCodeResponse
'''
'''The tax number of the return type.
'''
Public Overridable Property Steuernr As String
End Class
End Namespace
End Namespace