/* Options: Date: 2026-01-25 20:37:55 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: HoleTestfinanzaemterAsync.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } /** @description A base service to get the list of test tax offices for a specified federal state. */ // @Api(Description="A base service to get the list of test tax offices for a specified federal state.") export class HoleTestfinanzaemterBase implements IGet { 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 test tax office. */ // @Api(Description="Represents a German test tax office.") export class Testfinanzamt extends FinanzamtBase { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } /** @description Represents a structure that encapsulates a list of German test tax offices. */ // @Api(Description="Represents a structure that encapsulates a list of German test tax offices.") export class EricHoleTestfinanzaemter { /** @description The list of test German tax offices. */ // @ApiMember(Description="The list of test German tax offices.", Name="TestFinanzaemeter") public testFinanzaemeter: Testfinanzamt[] = []; 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 list of test fiscal authoririties. */ // @Api(Description="Represents a type that encapsulates the return values of the ERiC API function, which retrieves list of test fiscal authoririties.") export class HoleTestfinanzaemterResponse extends EricFehlerCodeResponse { /** @description The list of test fiscal authoririties. */ // @ApiMember(Description="The list of test fiscal authoririties.") public rueckgabe?: EricHoleTestfinanzaemter; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } /** @description An asynchronous service to get the list of test tax offices for a specified federal state. */ // @Route("/HoleTestfinanzaemterAsync", "GET") // @Api(Description="An asynchronous service to get the list of test tax offices for a specified federal state.") export class HoleTestfinanzaemterAsync extends HoleTestfinanzaemterBase implements IReturn { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'HoleTestfinanzaemterAsync'; } public getMethod() { return 'GET'; } public createResponse() { return new HoleTestfinanzaemterResponse(); } }