/* Options:
Date: 2026-01-25 12:29:33
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: FormatEWAz.*
//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 convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format.
///
[Route("/FormatEWAz/{FileNumber}", "GET")]
[Api(Description="A synchronous service to convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format.")]
public partial class FormatEWAz
: FormatEWAzBase, IReturn
{
}
///
///A base service to convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format.
///
[Api(Description="A base service to convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format.")]
public partial class FormatEWAzBase
: IGet
{
///
///Elster-formatted file reference of assessed value (e.g. 2831400190001250002)
///
[ApiMember(Description="Elster-formatted file reference of assessed value (e.g. 2831400190001250002)", Name="FileNumber")]
public virtual string FileNumber { 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 German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate.
///
[Api(Description="Encapsulates the German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate.")]
public partial class FormatEWAzResponse
: EricFehlerCodeResponse
{
///
///German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate.
///
[ApiMember(Description="German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate.")]
public virtual string FileNumber { get; set; }
}
}