/* Options: Date: 2026-01-25 07:27:25 Version: 8.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.staging.pwc.de //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: 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 */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.Net; using PwC.xEric.Core.Services.Contracts.Requests; using PwC.xEric.Core.Services.Contracts.Responses; namespace PwC.xEric.Core.Services.Contracts.Requests { /// ///An asynchronous service to create an ELSTER-compatible tax number from a specified tax number. /// [Route("/MakeElsterStnrAsync", "POST")] [Api(Description="An asynchronous service to create an ELSTER-compatible tax number from a specified tax number.")] public partial class MakeElsterStnrAsync : MakeElsterStnrBase, IReturn { } /// ///A base service to create an ELSTER-compatible tax number from a specified tax number. /// [Api(Description="A base service to create an ELSTER-compatible tax number from a specified tax number.")] public partial class MakeElsterStnrBase : IPost { /// ///The format of the tax number as indicated in the official letter. /// [ApiMember(Description="The format of the tax number as indicated in the official letter.")] public virtual string SteuernrBescheid { get; set; } /// ///The two-digit state number (corresponds to the first two digits of the Federal Tax Office number). /// [ApiMember(Description="The two-digit state number (corresponds to the first two digits of the Federal Tax Office number).")] public virtual string Landesnr { get; set; } /// ///The four-digit Federal Tax Office Number. /// [ApiMember(Description="The four-digit Federal Tax Office Number.")] public virtual string Bundesfinanzamtsnr { get; set; } } } namespace PwC.xEric.Core.Services.Contracts.Responses { /// ///Represent a base response that encapsulate any ERiC API function return value. /// [Api(Description="Represent a base response that encapsulate any ERiC API function return value.")] public partial class EricFehlerCodeResponse : ServiceReponseBase { /// ///The status code that the ERiC API function returns. /// [ApiMember(Description="The status code that the ERiC API function returns.")] public virtual EricFehlerCode StatusCode { get; set; } /// ///The status message that the ERiC API function returns. /// [ApiMember(Description="The status message that the ERiC API function returns.")] public virtual string StatusText { get; set; } } /// ///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. /// [Api(Description="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 : EricFehlerCodeResponse { /// ///The tax number of the return type. /// [ApiMember(Description="The tax number of the return type.")] public virtual string Steuernr { get; set; } } }