/* Options: Date: 2026-01-24 21:50:12 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: FormatStNr.* //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 represent the given tax number in the format of the responsible Federal State. */ @Route(Path="/FormatStNr/{EingabeSteuernummer}", Verbs="GET") @Api(Description="A synchronous service to represent the given tax number in the format of the responsible Federal State.") public static class FormatStNr extends FormatStNrBase implements IReturn { private static Object responseType = FormatStNrResponse.class; public Object getResponseType() { return responseType; } } /** * Represents a type that encapsulates the return values of the ERiC API function that formats tax numbers. */ @Api(Description="Represents a type that encapsulates the return values of the ERiC API function that formats tax numbers.") public static class FormatStNrResponse extends EricFehlerCodeResponse { /** * The formatted tax number. */ @ApiMember(Description="The formatted tax number.") public String rueckgabe = null; public String getRueckgabe() { return rueckgabe; } public FormatStNrResponse setRueckgabe(String value) { this.rueckgabe = value; return this; } } /** * A base service to represent the given tax number in the format of the responsible Federal State. */ @Api(Description="A base service to represent the given tax number in the format of the responsible Federal State.") public static class FormatStNrBase implements IGet { /** * The valid ELSTER-formatted tax number. */ @ApiMember(Description="The valid ELSTER-formatted tax number.") public String eingabeSteuernummer = null; public String getEingabeSteuernummer() { return eingabeSteuernummer; } public FormatStNrBase setEingabeSteuernummer(String value) { this.eingabeSteuernummer = 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; } } }