/* Options:
Date: 2026-01-24 23:28:19
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: MakeElsterEWAzAsync.*
//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.Domain.Contracts.Enums;
using PwC.xEric.Core.Services.Contracts.Requests;
using PwC.xEric.Core.Services.Contracts.Responses;
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,
}
}
namespace PwC.xEric.Core.Services.Contracts.Requests
{
///
///An asynchronous service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format.
///
[Route("/MakeElsterEWAzAsync", "GET")]
[Api(Description="An asynchronous service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format. ")]
public partial class MakeElsterEWAzAsync
: MakeElsterEWAzBase, IReturn
{
}
///
///A base service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format.
///
[Api(Description="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
: IGet
{
///
///Federal state-formatted file number of an assesed value of real estate.
///
[ApiMember(Description="Federal state-formatted file number of an assesed value of real estate.")]
public virtual string FileNumber { get; set; }
///
///Code to identify the German federal state.
///
[ApiMember(Description="Code to identify the German federal state.")]
public virtual Bundesland StateCode { 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; }
}
///
///Encapsulates the ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate.
///
[Api(Description="Encapsulates the ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate.")]
public partial class MakeElsterEWAzResponse
: EricFehlerCodeResponse
{
///
///ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate.
///
[ApiMember(Description="ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate.", Name="FileNumber")]
public virtual string FileNumber { get; set; }
}
}