/* Options: Date: 2026-01-25 02:46:04 Version: 8.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.staging.pwc.de //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: HoleTestfinanzaemterAsync.* //ExcludeTypes: //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.*; public class dtos { /** * An asynchronous service to get the list of test tax offices for a specified federal state. */ @Route(Path="/HoleTestfinanzaemterAsync", Verbs="GET") @Api(Description="An asynchronous service to get the list of test tax offices for a specified federal state.") public static class HoleTestfinanzaemterAsync extends HoleTestfinanzaemterBase implements IReturn { private static Object responseType = HoleTestfinanzaemterResponse.class; public Object getResponseType() { return responseType; } } /** * Represents a type that encapsulates the return values of the ERiC API function, which retrieves list of test fiscal authoririties. */ @Api(Description="Represents a type that encapsulates the return values of the ERiC API function, which retrieves list of test fiscal authoririties.") public static class HoleTestfinanzaemterResponse extends EricFehlerCodeResponse { /** * The list of test fiscal authoririties. */ @ApiMember(Description="The list of test fiscal authoririties.") public EricHoleTestfinanzaemter rueckgabe = null; public EricHoleTestfinanzaemter getRueckgabe() { return rueckgabe; } public HoleTestfinanzaemterResponse setRueckgabe(EricHoleTestfinanzaemter value) { this.rueckgabe = value; return this; } } /** * A base service to get the list of test tax offices for a specified federal state. */ @Api(Description="A base service to get the list of test tax offices for a specified federal state.") public static class HoleTestfinanzaemterBase implements IGet { } /** * Represents a structure that encapsulates a list of German test tax offices. */ @Api(Description="Represents a structure that encapsulates a list of German test tax offices.") public static class EricHoleTestfinanzaemter { /** * The list of test German tax offices. */ @ApiMember(Description="The list of test German tax offices.", Name="TestFinanzaemeter") public ArrayList testFinanzaemeter = new ArrayList(); public ArrayList getTestFinanzaemeter() { return testFinanzaemeter; } public EricHoleTestfinanzaemter setTestFinanzaemeter(ArrayList value) { this.testFinanzaemeter = value; return this; } } /** * Represents a German test tax office. */ @Api(Description="Represents a German test tax office.") public static class Testfinanzamt extends FinanzamtBase { } /** * Represents the base class of a German tax office. */ @Api(Description="Represents the base class of a German tax office.") public static class FinanzamtBase { /** * The identification number of the German tax office. */ @ApiMember(Description="The identification number of the German tax office.", Name="BuFaNummer") public String buFaNummer = null; /** * The name of the German tax office. */ @ApiMember(Description="The name of the German tax office.", Name="Name") public String name = null; public String getBuFaNummer() { return buFaNummer; } public FinanzamtBase setBuFaNummer(String value) { this.buFaNummer = value; return this; } public String getName() { return name; } public FinanzamtBase setName(String value) { this.name = value; return this; } } /** * 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.") public static class EricFehlerCodeResponse extends ServiceReponseBase { /** * The status code that the ERiC API function returns. */ @ApiMember(Description="The status code that the ERiC API function returns.") public EricFehlerCode statusCode = null; /** * The status message that the ERiC API function returns. */ @ApiMember(Description="The status message that the ERiC API function returns.") public String statusText = null; public EricFehlerCode getStatusCode() { return statusCode; } public EricFehlerCodeResponse setStatusCode(EricFehlerCode value) { this.statusCode = value; return this; } public String getStatusText() { return statusText; } public EricFehlerCodeResponse setStatusText(String value) { this.statusText = value; return this; } } }