/* Options: Date: 2026-01-24 23:28:50 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: MakeElsterEWAzAsync.* //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 convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format. */ @Route(Path="/MakeElsterEWAzAsync", Verbs="GET") @Api(Description="An asynchronous service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format. ") open class MakeElsterEWAzAsync : MakeElsterEWAzBase(), IReturn { companion object { private val responseType = MakeElsterEWAzResponse::class.java } override fun getResponseType(): Any? = MakeElsterEWAzAsync.responseType } /** * Encapsulates the ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate. */ @Api(Description="Encapsulates the ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate.") open class MakeElsterEWAzResponse : EricFehlerCodeResponse() { /** * ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate. */ @ApiMember(Description="ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate.", Name="FileNumber") open var fileNumber:String? = null } /** * Uniform abbreviations for the federal states or alternative recipients */ enum class Bundesland { Bw, By, Be, Bb, Hb, Hh, He, Mv, Ni, Nw, Rp, Sl, Sn, St, Sh, Th, Ec, Bf, Cs, Cd, Cm, Cn, Ds, Op, Tk, Zf, } /** * A base service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format. */ @Api(Description="A base service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format.") open class MakeElsterEWAzBase : IGet { /** * Federal state-formatted file number of an assesed value of real estate. */ @ApiMember(Description="Federal state-formatted file number of an assesed value of real estate.") open var fileNumber:String? = null /** * Code to identify the German federal state. */ @ApiMember(Description="Code to identify the German federal state.") open var stateCode:Bundesland? = 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 }