(* Options: Date: 2026-01-25 11:03:15 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: MakeElsterStnrAsync.* //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 create an ELSTER-compatible tax number from a specified tax number. /// [] [] type MakeElsterStnrBase() = interface IPost /// ///The format of the tax number as indicated in the official letter. /// [] member val SteuernrBescheid:String = null with get,set /// ///The two-digit state number (corresponds to the first two digits of the Federal Tax Office number). /// [] member val Landesnr:String = null with get,set /// ///The four-digit Federal Tax Office Number. /// [] member val Bundesfinanzamtsnr: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 /// ///Represents a type that encapsulates the return values of the ERiC API function, which creates an ELSTER-compatible tax number from a specified tax number. /// [] [] type MakeElsterStnrResponse() = inherit EricFehlerCodeResponse() /// ///The tax number of the return type. /// [] member val Steuernr:String = null with get,set /// ///An asynchronous service to create an ELSTER-compatible tax number from a specified tax number. /// [] [] [] type MakeElsterStnrAsync() = inherit MakeElsterStnrBase() interface IReturn