/* Options:
Date: 2026-01-24 23:26:06
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: FormatStNrAsync.*
//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 represent the given tax number in the format of the responsible Federal State.
///
[Route("/FormatStNrAsync/{EingabeSteuernummer}", "GET")]
[Api(Description="An asynchronous service to represent the given tax number in the format of the responsible Federal State.")]
public partial class FormatStNrAsync
: FormatStNrBase, IReturn
{
}
///
///A base service to represent the given tax number in the format of the responsible Federal State.
///
[Api(Description="A base service to represent the given tax number in the format of the responsible Federal State.")]
public partial class FormatStNrBase
: IGet
{
///
///The valid ELSTER-formatted tax number.
///
[ApiMember(Description="The valid ELSTER-formatted tax number.")]
public virtual string EingabeSteuernummer { 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 that formats tax numbers.
///
[Api(Description="Represents a type that encapsulates the return values of the ERiC API function that formats tax numbers.")]
public partial class FormatStNrResponse
: EricFehlerCodeResponse
{
///
///The formatted tax number.
///
[ApiMember(Description="The formatted tax number.")]
public virtual string Rueckgabe { get; set; }
}
}