/* Options: Date: 2026-01-25 09:26:28 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: FormatEWAzAsync.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } /** @description A base service to convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format. */ // @Api(Description="A base service to convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format.") export class FormatEWAzBase implements IGet { /** @description Elster-formatted file reference of assessed value (e.g. 2831400190001250002) */ // @ApiMember(Description="Elster-formatted file reference of assessed value (e.g. 2831400190001250002)", Name="FileNumber") public fileNumber: 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 Encapsulates the German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate. */ // @Api(Description="Encapsulates the German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate.") export class FormatEWAzResponse extends EricFehlerCodeResponse { /** @description German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate. */ // @ApiMember(Description="German federal state-specific file number (e.g. 3100190001250002) of assessed unit value of real estate.") public fileNumber?: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } /** @description An asynchronous service to convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format. */ // @Route("/FormatEWAzAsync/{FileNumber}", "GET") // @Api(Description="An asynchronous service to convert the ELSTER-formatted file number of an assesed value of real estate into its equivalent federal state-specific format.") export class FormatEWAzAsync extends FormatEWAzBase implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'FormatEWAzAsync'; } public getMethod() { return 'GET'; } public createResponse() { return new FormatEWAzResponse(); } }