/* Options: Date: 2026-01-25 01:18:37 Version: 8.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.staging.pwc.de //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FormatStNr.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * A synchronous service to represent the given tax number in the format of the responsible Federal State. */ @Route(Path="/FormatStNr/{EingabeSteuernummer}", Verbs="GET") @Api(Description="A synchronous service to represent the given tax number in the format of the responsible Federal State.") open class FormatStNr : FormatStNrBase(), IReturn { companion object { private val responseType = FormatStNrResponse::class.java } override fun getResponseType(): Any? = FormatStNr.responseType } /** * Represents a type that encapsulates the return values of the ERiC API function that formats tax numbers. */ @Api(Description="Represents a type that encapsulates the return values of the ERiC API function that formats tax numbers.") open class FormatStNrResponse : EricFehlerCodeResponse() { /** * The formatted tax number. */ @ApiMember(Description="The formatted tax number.") open var rueckgabe:String? = null } /** * A base service to represent the given tax number in the format of the responsible Federal State. */ @Api(Description="A base service to represent the given tax number in the format of the responsible Federal State.") open class FormatStNrBase : IGet { /** * The valid ELSTER-formatted tax number. */ @ApiMember(Description="The valid ELSTER-formatted tax number.") open var eingabeSteuernummer:String? = null } /** * 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.") open class EricFehlerCodeResponse : ServiceReponseBase() { /** * The status code that the ERiC API function returns. */ @ApiMember(Description="The status code that the ERiC API function returns.") open var statusCode:EricFehlerCode? = null /** * The status message that the ERiC API function returns. */ @ApiMember(Description="The status message that the ERiC API function returns.") open var statusText:String? = null }