/* Options: Date: 2026-01-24 23:27:24 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: FormatStNrAsync.* //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 An asynchronous service to represent the given tax number in the format of the responsible Federal State. */ // @Route("/FormatStNrAsync/{EingabeSteuernummer}", "GET") // @Api(Description="An asynchronous service to represent the given tax number in the format of the responsible Federal State.") export class FormatStNrAsync extends FormatStNrBase implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'FormatStNrAsync'; } public getMethod() { return 'GET'; } public createResponse() { return new FormatStNrResponse(); } }