/* Options: Date: 2026-01-25 22:24:57 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: HoleFinanzaemterAsync.* //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 get the list of tax offices for a specified federal state. */ @Route(Path="/HoleFinanzaemterAsync/{FinanzamtLandNummer}", Verbs="GET") @Api(Description="An asynchronous service to get the list of tax offices for a specified federal state.") open class HoleFinanzaemterAsync : HoleFinanzaemterBase(), IReturn { companion object { private val responseType = HoleFinanzaemterResponse::class.java } override fun getResponseType(): Any? = HoleFinanzaemterAsync.responseType } /** * Represents a type that encapsulates the return values of the ERiC API function, which retrieves the list of federal tax offices for a specified state. */ @Api(Description="Represents a type that encapsulates the return values of the ERiC API function, which retrieves the list of federal tax offices for a specified state.") open class HoleFinanzaemterResponse : EricFehlerCodeResponse() { /** * The list of federal tax offices for a specified state. */ @ApiMember(Description="The list of federal tax offices for a specified state.") open var rueckgabe:EricHoleFinanzaemter? = null } /** * A base service to get the list of tax offices for a specified federal state. */ @Api(Description="A base service to get the list of tax offices for a specified federal state.") open class HoleFinanzaemterBase : IGet { /** * The state number of the tax offices. */ @ApiMember(Description="The state number of the tax offices.") open var finanzamtLandNummer:String? = null } /** * Represents a structure that encapsulates a list of German tax offices. */ @Api(Description="Represents a structure that encapsulates a list of German tax offices.") open class EricHoleFinanzaemter { /** * The list of German tax offices. */ @ApiMember(Description="The list of German tax offices.", Name="Finanzaemter") open var finanzaemter:ArrayList = ArrayList() } /** * Represents a German tax office. */ @Api(Description="Represents a German tax office.") open class Finanzamt : FinanzamtBase() { } /** * Represents the base class of a German tax office. */ @Api(Description="Represents the base class of a German tax office.") open class FinanzamtBase { /** * The identification number of the German tax office. */ @ApiMember(Description="The identification number of the German tax office.", Name="BuFaNummer") open var buFaNummer:String? = null /** * The name of the German tax office. */ @ApiMember(Description="The name of the German tax office.", Name="Name") open var name: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 }