(* Options: Date: 2026-01-25 11:00:25 Version: 8.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.staging.pwc.de //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: FormatEWAzAsync.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace PwC.xEric.Core.Services.Contracts.Requests open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Net /// ///A base service to convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format. /// [] [] type FormatEWAzBase() = interface IGet /// ///Elster-formatted file reference of assessed value (e.g. 2831400190001250002) /// [] member val FileNumber:String = null with get,set /// ///Represent a base response that encapsulate any ERiC API function return value. /// [] [] type EricFehlerCodeResponse() = inherit ServiceReponseBase() /// ///The status code that the ERiC API function returns. /// [] member val StatusCode:EricFehlerCode = new EricFehlerCode() with get,set /// ///The status message that the ERiC API function returns. /// [] member val StatusText:String = null with get,set /// ///Encapsulates the German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate. /// [] [] type FormatEWAzResponse() = inherit EricFehlerCodeResponse() /// ///German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate. /// [] member val FileNumber:String = null with get,set /// ///An asynchronous service to convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format. /// [] [] [] type FormatEWAzAsync() = inherit FormatEWAzBase() interface IReturn