/* Options: Date: 2026-01-25 20:57:33 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: HoleFinanzamtLandNummern.* //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 { /** * 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.") public static class HoleFinanzamtLandNummern extends HoleFinanzamtLandNummernBase implements IReturn { private static Object responseType = HoleFinanzamtLandNummernResponse.class; public Object getResponseType() { return 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.") public static class HoleFinanzamtLandNummernResponse extends EricFehlerCodeResponse { /** * The list of all tax office numbers. */ @ApiMember(Description="The list of all tax office numbers.") public EricHoleFinanzamtLandNummern rueckgabe = null; public EricHoleFinanzamtLandNummern getRueckgabe() { return rueckgabe; } public HoleFinanzamtLandNummernResponse setRueckgabe(EricHoleFinanzamtLandNummern value) { this.rueckgabe = value; return this; } } /** * 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.") public static class HoleFinanzamtLandNummernBase implements 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.") public static class EricHoleFinanzamtLandNummern { /** * The list of state details of German tax offices. */ @ApiMember(Description="The list of state details of German tax offices.", Name="FinanzamtLaender") public ArrayList finanzamtLaender = new ArrayList(); public ArrayList getFinanzamtLaender() { return finanzamtLaender; } public EricHoleFinanzamtLandNummern setFinanzamtLaender(ArrayList value) { this.finanzamtLaender = value; return this; } } /** * Represents the state details of a German tax office. */ @Api(Description="Represents the state details of a German tax office.") public static class FinanzamtLand { /** * The identification number of the state. */ @ApiMember(Description="The identification number of the state.", Name="FinanzamtLandNummer") public String finanzamtLandNummer = null; /** * The name of the state. */ @ApiMember(Description="The name of the state.", Name="Name") public String name = null; public String getFinanzamtLandNummer() { return finanzamtLandNummer; } public FinanzamtLand setFinanzamtLandNummer(String value) { this.finanzamtLandNummer = value; return this; } public String getName() { return name; } public FinanzamtLand 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; } } }