/* Options: Date: 2026-01-25 05:48:49 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: MakeElsterEWAzAsync.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } /** @description Uniform abbreviations for the federal states or alternative recipients */ export enum Bundesland { BW = 'BW', BY = 'BY', BE = 'BE', BB = 'BB', HB = 'HB', HH = 'HH', HE = 'HE', MV = 'MV', NI = 'NI', NW = 'NW', RP = 'RP', SL = 'SL', SN = 'SN', ST = 'ST', SH = 'SH', TH = 'TH', EC = 'EC', BF = 'BF', CS = 'CS', CD = 'CD', CM = 'CM', CN = 'CN', DS = 'DS', OP = 'OP', TK = 'TK', ZF = 'ZF', } /** @description A base service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format. */ // @Api(Description="A base service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format.") export class MakeElsterEWAzBase implements IGet { /** @description Federal state-formatted file number of an assesed value of real estate. */ // @ApiMember(Description="Federal state-formatted file number of an assesed value of real estate.") public fileNumber: string; /** @description Code to identify the German federal state. */ // @ApiMember(Description="Code to identify the German federal state.") public stateCode: Bundesland; 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 ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate. */ // @Api(Description="Encapsulates the ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate.") export class MakeElsterEWAzResponse extends EricFehlerCodeResponse { /** @description ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate. */ // @ApiMember(Description="ELSTER-formatted file number (e.g. 2831400190001250002) of assessed unit value of real estate.", Name="FileNumber") public fileNumber?: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } /** @description An asynchronous service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format. */ // @Route("/MakeElsterEWAzAsync", "GET") // @Api(Description="An asynchronous service to convert the federal state-formatted file number of an assesed value of real estate into its equivalent ELSTER format. ") export class MakeElsterEWAzAsync extends MakeElsterEWAzBase implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'MakeElsterEWAzAsync'; } public getMethod() { return 'GET'; } public createResponse() { return new MakeElsterEWAzResponse(); } }