/* Options: Date: 2026-01-25 12:33:54 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: FormatStNr.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } /** @description 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.") export class FormatStNrBase implements IGet { /** @description The valid ELSTER-formatted tax number. */ // @ApiMember(Description="The valid ELSTER-formatted tax number.") public eingabeSteuernummer: 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 that formats tax numbers. */ // @Api(Description="Represents a type that encapsulates the return values of the ERiC API function that formats tax numbers.") export class FormatStNrResponse extends EricFehlerCodeResponse { /** @description The formatted tax number. */ // @ApiMember(Description="The formatted tax number.") public rueckgabe?: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } /** @description A synchronous service to represent the given tax number in the format of the responsible Federal State. */ // @Route("/FormatStNr/{EingabeSteuernummer}", "GET") // @Api(Description="A synchronous service to represent the given tax number in the format of the responsible Federal State.") export class FormatStNr extends FormatStNrBase implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'FormatStNr'; } public getMethod() { return 'GET'; } public createResponse() { return new FormatStNrResponse(); } }