/* Options: Date: 2026-01-24 21:49:29 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: MakeElsterStnrAsync.* //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 create an ELSTER-compatible tax number from a specified tax number. */ @Route(Path="/MakeElsterStnrAsync", Verbs="POST") @Api(Description="An asynchronous service to create an ELSTER-compatible tax number from a specified tax number.") public static class MakeElsterStnrAsync extends MakeElsterStnrBase implements IReturn { private static Object responseType = MakeElsterStnrResponse.class; public Object getResponseType() { return responseType; } } /** * Represents a type that encapsulates the return values of the ERiC API function, which creates an ELSTER-compatible tax number from a specified tax number. */ @Api(Description="Represents a type that encapsulates the return values of the ERiC API function, which creates an ELSTER-compatible tax number from a specified tax number.") public static class MakeElsterStnrResponse extends EricFehlerCodeResponse { /** * The tax number of the return type. */ @ApiMember(Description="The tax number of the return type.") public String steuernr = null; public String getSteuernr() { return steuernr; } public MakeElsterStnrResponse setSteuernr(String value) { this.steuernr = value; return this; } } /** * A base service to create an ELSTER-compatible tax number from a specified tax number. */ @Api(Description="A base service to create an ELSTER-compatible tax number from a specified tax number.") public static class MakeElsterStnrBase implements IPost { /** * The format of the tax number as indicated in the official letter. */ @ApiMember(Description="The format of the tax number as indicated in the official letter.") public String steuernrBescheid = null; /** * The two-digit state number (corresponds to the first two digits of the Federal Tax Office number). */ @ApiMember(Description="The two-digit state number (corresponds to the first two digits of the Federal Tax Office number).") public String landesnr = null; /** * The four-digit Federal Tax Office Number. */ @ApiMember(Description="The four-digit Federal Tax Office Number.") public String bundesfinanzamtsnr = null; public String getSteuernrBescheid() { return steuernrBescheid; } public MakeElsterStnrBase setSteuernrBescheid(String value) { this.steuernrBescheid = value; return this; } public String getLandesnr() { return landesnr; } public MakeElsterStnrBase setLandesnr(String value) { this.landesnr = value; return this; } public String getBundesfinanzamtsnr() { return bundesfinanzamtsnr; } public MakeElsterStnrBase setBundesfinanzamtsnr(String value) { this.bundesfinanzamtsnr = 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; } } }