/* Options: Date: 2026-01-24 23:33:04 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: FormatEWAz.* //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 convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format. */ @Route(Path="/FormatEWAz/{FileNumber}", Verbs="GET") @Api(Description="A synchronous service to convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format.") open class FormatEWAz : FormatEWAzBase(), IReturn { companion object { private val responseType = FormatEWAzResponse::class.java } override fun getResponseType(): Any? = FormatEWAz.responseType } /** * Encapsulates the German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate. */ @Api(Description="Encapsulates the German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate.") open class FormatEWAzResponse : EricFehlerCodeResponse() { /** * German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate. */ @ApiMember(Description="German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate.") open var fileNumber:String? = null } /** * A base service to convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format. */ @Api(Description="A base service to convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format.") open class FormatEWAzBase : IGet { /** * Elster-formatted file reference of assessed value (e.g. 2831400190001250002) */ @ApiMember(Description="Elster-formatted file reference of assessed value (e.g. 2831400190001250002)", Name="FileNumber") open var fileNumber: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 }