/* Options:
Date: 2026-01-25 10:40:53
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: MakeElsterStnr.*
//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
{
///
///A synchronous service to create an ELSTER-compatible tax number from a specified tax number.
///
[Route("/MakeElsterStnr", "POST")]
[Api(Description="A synchronous service to create an ELSTER-compatible tax number from a specified tax number.")]
public partial class MakeElsterStnr
: 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; }
}
}