/* Options: Date: 2026-01-25 10:40:48 Version: 8.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.staging.pwc.de //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: MakeElsterStnr.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } /** @description 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.") export class MakeElsterStnrBase implements IPost { /** @description 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 steuernrBescheid: string; /** @description 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 landesnr: string; /** @description The four-digit Federal Tax Office Number. */ // @ApiMember(Description="The four-digit Federal Tax Office Number.") public bundesfinanzamtsnr: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description 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.") export class EricFehlerCodeResponse extends ServiceReponseBase { /** @description The status code that the ERiC API function returns. */ // @ApiMember(Description="The status code that the ERiC API function returns.") public statusCode: EricFehlerCode; /** @description The status message that the ERiC API function returns. */ // @ApiMember(Description="The status message that the ERiC API function returns.") public statusText?: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } /** @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. */ // @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.") export class MakeElsterStnrResponse extends EricFehlerCodeResponse { /** @description The tax number of the return type. */ // @ApiMember(Description="The tax number of the return type.") public steuernr?: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } /** @description A synchronous service to create an ELSTER-compatible tax number from a specified tax number. */ // @Route("/MakeElsterStnr", "POST") // @Api(Description="A synchronous service to create an ELSTER-compatible tax number from a specified tax number.") export class MakeElsterStnr extends MakeElsterStnrBase implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'MakeElsterStnr'; } public getMethod() { return 'POST'; } public createResponse() { return new MakeElsterStnrResponse(); } }