/* Options: Date: 2026-01-25 22:32:09 Version: 8.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.staging.pwc.de //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: HoleTestfinanzaemterAsync.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.Net; using PwC.xEric.Core.Services.Contracts.Requests; using PwC.xEric.Core.Domain.Concretes.Models; using PwC.xEric.Core.Services.Contracts.Responses; namespace PwC.xEric.Core.Domain.Concretes.Models { /// ///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.")] public partial class EricHoleTestfinanzaemter { /// ///The list of test German tax offices. /// [ApiMember(Description="The list of test German tax offices.", Name="TestFinanzaemeter")] public virtual List TestFinanzaemeter { get; set; } = []; } /// ///Represents the base class of a German tax office. /// [Api(Description="Represents the base class of a German tax office.")] public partial class FinanzamtBase { /// ///The identification number of the German tax office. /// [ApiMember(Description="The identification number of the German tax office.", Name="BuFaNummer")] public virtual string BuFaNummer { get; set; } /// ///The name of the German tax office. /// [ApiMember(Description="The name of the German tax office.", Name="Name")] public virtual string Name { get; set; } } /// ///Represents a German test tax office. /// [Api(Description="Represents a German test tax office.")] public partial class Testfinanzamt : FinanzamtBase { } } namespace PwC.xEric.Core.Services.Contracts.Requests { /// ///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.")] public partial class HoleTestfinanzaemterAsync : HoleTestfinanzaemterBase, IReturn { } /// ///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.")] public partial class HoleTestfinanzaemterBase : IGet { } } namespace PwC.xEric.Core.Services.Contracts.Responses { /// ///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.")] public partial class EricFehlerCodeResponse : ServiceReponseBase { /// ///The status code that the ERiC API function returns. /// [ApiMember(Description="The status code that the ERiC API function returns.")] public virtual EricFehlerCode StatusCode { get; set; } /// ///The status message that the ERiC API function returns. /// [ApiMember(Description="The status message that the ERiC API function returns.")] public virtual string StatusText { get; set; } } /// ///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.")] public partial class HoleTestfinanzaemterResponse : EricFehlerCodeResponse { /// ///The list of test fiscal authoririties. /// [ApiMember(Description="The list of test fiscal authoririties.")] public virtual EricHoleTestfinanzaemter Rueckgabe { get; set; } } }