/* Options: Date: 2026-01-24 23:41:53 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: MakeElsterStnrAsync.* //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.* /** * An asynchronous service to create an ELSTER-compatible tax number from a specified tax number. */ @Route(Path="/MakeElsterStnrAsync", Verbs="POST") @Api(Description="An asynchronous service to create an ELSTER-compatible tax number from a specified tax number.") open class MakeElsterStnrAsync : MakeElsterStnrBase(), IReturn { companion object { private val responseType = MakeElsterStnrResponse::class.java } override fun getResponseType(): Any? = MakeElsterStnrAsync.responseType } /** * 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. */ @Api(Description="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.") open class MakeElsterStnrResponse : EricFehlerCodeResponse() { /** * The tax number of the return type. */ @ApiMember(Description="The tax number of the return type.") open var steuernr:String? = null } /** * A base service to create an ELSTER-compatible tax number from a specified tax number. */ @Api(Description="A base service to create an ELSTER-compatible tax number from a specified tax number.") open class MakeElsterStnrBase : IPost { /** * The format of the tax number as indicated in the official letter. */ @ApiMember(Description="The format of the tax number as indicated in the official letter.") open var steuernrBescheid:String? = null /** * The two-digit state number (corresponds to the first two digits of the Federal Tax Office number). */ @ApiMember(Description="The two-digit state number (corresponds to the first two digits of the Federal Tax Office number).") open var landesnr:String? = null /** * The four-digit Federal Tax Office Number. */ @ApiMember(Description="The four-digit Federal Tax Office Number.") open var bundesfinanzamtsnr: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 }