(* Options: Date: 2026-01-24 23:29:44 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: FormatStNr.* //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 represent the given tax number in the format of the responsible Federal State. /// [] [] type FormatStNrBase() = interface IGet /// ///The valid ELSTER-formatted tax number. /// [] member val EingabeSteuernummer: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 that formats tax numbers. /// [] [] type FormatStNrResponse() = inherit EricFehlerCodeResponse() /// ///The formatted tax number. /// [] member val Rueckgabe:String = null with get,set /// ///A synchronous service to represent the given tax number in the format of the responsible Federal State. /// [] [] [] type FormatStNr() = inherit FormatStNrBase() interface IReturn