/* Options: Date: 2026-01-25 11:32:34 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: HoleFinanzamtLandNummern.* //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 get the list of tax office numbers for a specified federal state. */ @Route(Path="/HoleFinanzamtLandNummern", Verbs="GET") @Api(Description="A synchronous service to get the list of tax office numbers for a specified federal state.") open class HoleFinanzamtLandNummern : HoleFinanzamtLandNummernBase(), IReturn { companion object { private val responseType = HoleFinanzamtLandNummernResponse::class.java } override fun getResponseType(): Any? = HoleFinanzamtLandNummern.responseType } /** * Represents a type that encapsulates the return values of the ERiC API function, which retrieves all tax office numbers. */ @Api(Description="Represents a type that encapsulates the return values of the ERiC API function, which retrieves all tax office numbers.") open class HoleFinanzamtLandNummernResponse : EricFehlerCodeResponse() { /** * The list of all tax office numbers. */ @ApiMember(Description="The list of all tax office numbers.") open var rueckgabe:EricHoleFinanzamtLandNummern? = null } /** * A base service to get the list of tax office numbers for a specified federal state. */ @Api(Description="A base service to get the list of tax office numbers for a specified federal state.") open class HoleFinanzamtLandNummernBase : IGet { } /** * Represents a structure that encapsulates a list of state details of German tax offices. */ @Api(Description="Represents a structure that encapsulates a list of state details of German tax offices.") open class EricHoleFinanzamtLandNummern { /** * The list of state details of German tax offices. */ @ApiMember(Description="The list of state details of German tax offices.", Name="FinanzamtLaender") open var finanzamtLaender:ArrayList = ArrayList() } /** * Represents the state details of a German tax office. */ @Api(Description="Represents the state details of a German tax office.") open class FinanzamtLand { /** * The identification number of the state. */ @ApiMember(Description="The identification number of the state.", Name="FinanzamtLandNummer") open var finanzamtLandNummer:String? = null /** * The name of the state. */ @ApiMember(Description="The name of the state.", 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 }