/* Options: Date: 2026-01-25 12:50: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: HoleFinanzaemterAsync.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } /** @description A base service to get the list of tax offices for a specified federal state. */ // @Api(Description="A base service to get the list of tax offices for a specified federal state.") export class HoleFinanzaemterBase implements IGet { /** @description The state number of the tax offices. */ // @ApiMember(Description="The state number of the tax offices.") public finanzamtLandNummer: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Represents the base class of a German tax office. */ // @Api(Description="Represents the base class of a German tax office.") export class FinanzamtBase { /** @description The identification number of the German tax office. */ // @ApiMember(Description="The identification number of the German tax office.", Name="BuFaNummer") public buFaNummer?: string; /** @description The name of the German tax office. */ // @ApiMember(Description="The name of the German tax office.", Name="Name") public name?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Represents a German tax office. */ // @Api(Description="Represents a German tax office.") export class Finanzamt extends FinanzamtBase { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } /** @description Represents a structure that encapsulates a list of German tax offices. */ // @Api(Description="Represents a structure that encapsulates a list of German tax offices.") export class EricHoleFinanzaemter { /** @description The list of German tax offices. */ // @ApiMember(Description="The list of German tax offices.", Name="Finanzaemter") public finanzaemter: Finanzamt[] = []; 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 retrieves the list of federal tax offices for a specified state. */ // @Api(Description="Represents a type that encapsulates the return values of the ERiC API function, which retrieves the list of federal tax offices for a specified state.") export class HoleFinanzaemterResponse extends EricFehlerCodeResponse { /** @description The list of federal tax offices for a specified state. */ // @ApiMember(Description="The list of federal tax offices for a specified state.") public rueckgabe?: EricHoleFinanzaemter; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } /** @description An asynchronous service to get the list of tax offices for a specified federal state. */ // @Route("/HoleFinanzaemterAsync/{FinanzamtLandNummer}", "GET") // @Api(Description="An asynchronous service to get the list of tax offices for a specified federal state.") export class HoleFinanzaemterAsync extends HoleFinanzaemterBase implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'HoleFinanzaemterAsync'; } public getMethod() { return 'GET'; } public createResponse() { return new HoleFinanzaemterResponse(); } }