' Options: 'Date: 2026-01-25 20:36:55 '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: MakeElsterEWAz.* '''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.Domain.Contracts.Enums Imports PwC.xEric.Core.Services.Contracts.Requests Imports PwC.xEric.Core.Services.Contracts.Responses Namespace Global Namespace PwC.xEric.Core.Domain.Contracts.Enums ''' '''Uniform abbreviations for the federal states or alternative recipients ''' Public Enum Bundesland BW BY BE BB HB HH HE MV NI NW RP SL SN ST SH TH EC BF CS CD CM CN DS OP TK ZF End Enum End Namespace Namespace PwC.xEric.Core.Services.Contracts.Requests ''' '''A synchronous service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format. ''' Public Partial Class MakeElsterEWAz Inherits MakeElsterEWAzBase Implements IReturn(Of MakeElsterEWAzResponse) End Class ''' '''A base service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format. ''' Public Partial Class MakeElsterEWAzBase Implements IGet ''' '''Federal state-formatted file number of an assesed value of real estate. ''' Public Overridable Property FileNumber As String ''' '''Code to identify the German federal state. ''' Public Overridable Property StateCode As Bundesland 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 ''' '''Encapsulates the ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate. ''' Public Partial Class MakeElsterEWAzResponse Inherits EricFehlerCodeResponse ''' '''ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate. ''' Public Overridable Property FileNumber As String End Class End Namespace End Namespace