/* Options: Date: 2026-01-25 00:05:56 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: HoleFinanzamtsdaten.* //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 tax office information for a specified Federal Tax Office Number. */ @Route(Path="/HoleFinanzamtsdaten/{BufaNr}", Verbs="GET") @Api(Description="A synchronous service to get tax office information for a specified Federal Tax Office Number.") open class HoleFinanzamtsdaten : HoleFinanzamtsdatenBase(), IReturn { companion object { private val responseType = HoleFinanzamtsdatenResponse::class.java } override fun getResponseType(): Any? = HoleFinanzamtsdaten.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 HoleFinanzamtsdatenResponse : EricFehlerCodeResponse() { /** * The details of a specified tax office. */ @ApiMember(Description="The details of a specified tax office.") open var rueckgabe:EricHoleFinanzamtsdaten? = null } /** * A base service to get tax office information for a specified Federal Tax Office Number. */ @Api(Description="A base service to get tax office information for a specified Federal Tax Office Number.") open class HoleFinanzamtsdatenBase : IGet { /** * The Federal Tax Office Number. */ @ApiMember(Description="The Federal Tax Office Number.", Name="BufaNr") open var bufaNr:String? = null } /** * Represents a structure that encapsulates the list of details of fiscal authorities. */ @Api(Description="Represents a structure that encapsulates the list of details of fiscal authorities.") open class EricHoleFinanzamtsdaten { /** * The version of the information structure. */ @ApiMember(Description="The version of the information structure.") open var version:Long? = null /** * The details of the fiscal authority. */ @ApiMember(Description="The details of the fiscal authority.") open var finanzamtsdaten:Finanzamtsdaten? = null } /** * Represents a structure that encapsulates details of fiscal authorities. */ @Api(Description="Represents a structure that encapsulates details of fiscal authorities.") open class Finanzamtsdaten { /** * The Federal Tax Office (Bundesfinanzamt) identification number of the fiscal authority. */ @ApiMember(Description="The Federal Tax Office (Bundesfinanzamt) identification number of the fiscal authority.") open var buFaNr:String? = null /** * The name of the fiscal authority. */ @ApiMember(Description="The name of the fiscal authority.") open var name:String? = null /** * The list of addresses of the fiscal authority. */ @ApiMember(Description="The list of addresses of the fiscal authority.") open var adresseListe:AdresseListe? = null /** * The list of business contacts of the fiscal authority. */ @ApiMember(Description="The list of business contacts of the fiscal authority.") open var kontaktListe:KontaktListe? = null /** * The list of bank accounts of the fiscal authority. */ @ApiMember(Description="The list of bank accounts of the fiscal authority.") open var bankverbindungListe:BankverbindungListe? = null /** * The opening hours of the fiscal authority. */ @ApiMember(Description="The opening hours of the fiscal authority.") open var oeffnungszeitListe:OeffnungszeitListe? = null /** * The list of comments of the fiscal authority. */ @ApiMember(Description="The list of comments of the fiscal authority.") open var bemerkungListe:BemerkungListe? = null /** * The central processing office of the fiscal authority. */ @ApiMember(Description="The central processing office of the fiscal authority.") open var hauptstelle:Hauptstelle? = null /** * The branch of the fiscal authority. */ @ApiMember(Description="The branch of the fiscal authority.") open var aussenstelle:String? = null } /** * Represents a list of Adresse items. */ open class AdresseListe { } /** * Represents a list of business contacts. */ open class KontaktListe { } /** * Represents a list of bank details */ open class BankverbindungListe { } /** * Represents a list of information on the opening hours. */ open class OeffnungszeitListe { } /** * Represents a list of comments. */ open class BemerkungListe { } /** * Represents Represents a central processing office. */ @Api(Description="Represents Represents a central processing office.") open class Hauptstelle { /** * The Federal Tax Office (Bundesfinanzamt) identification number of the office. */ @ApiMember(Description="The Federal Tax Office (Bundesfinanzamt) identification number of the office.") open var buFaNr:String? = null /** * The name of the office. */ @ApiMember(Description="The name of the office.") 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 }