(* Options: Date: 2026-01-25 12:33:56 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: MakeElsterEWAz.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace PwC.xEric.Core.Domain.Contracts.Enums open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Net /// ///Uniform abbreviations for the federal states or alternative recipients /// type Bundesland = | BW = 0 | BY = 1 | BE = 2 | BB = 3 | HB = 4 | HH = 5 | HE = 6 | MV = 7 | NI = 8 | NW = 9 | RP = 10 | SL = 11 | SN = 12 | ST = 13 | SH = 14 | TH = 15 | EC = 16 | BF = 17 | CS = 18 | CD = 19 | CM = 20 | CN = 21 | DS = 22 | OP = 23 | TK = 24 | ZF = 25 /// ///A base service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format. /// [] [] type MakeElsterEWAzBase() = interface IGet /// ///Federal state-formatted file number of an assesed value of real estate. /// [] member val FileNumber:String = null with get,set /// ///Code to identify the German federal state. /// [] member val StateCode:Bundesland = new Bundesland() 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 ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate. /// [] [] type MakeElsterEWAzResponse() = inherit EricFehlerCodeResponse() /// ///ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate. /// [] member val FileNumber:String = null with get,set /// ///A synchronous service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format. /// [] [] [] type MakeElsterEWAz() = inherit MakeElsterEWAzBase() interface IReturn