/* Options:
Date: 2026-01-25 09:09:49
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: HoleFinanzaemterAsync.*
//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 tax offices.
///
[Api(Description="Represents a structure that encapsulates a list of German tax offices.")]
public partial class EricHoleFinanzaemter
{
///
///The list of German tax offices.
///
[ApiMember(Description="The list of German tax offices.", Name="Finanzaemter")]
public virtual List Finanzaemter { get; set; } = [];
}
///
///Represents a German tax office.
///
[Api(Description="Represents a German tax office.")]
public partial class Finanzamt
: FinanzamtBase
{
}
///
///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; }
}
}
namespace PwC.xEric.Core.Services.Contracts.Requests
{
///
///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.")]
public partial class HoleFinanzaemterAsync
: HoleFinanzaemterBase, IReturn
{
}
///
///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.")]
public partial class HoleFinanzaemterBase
: IGet
{
///
///The state number of the tax offices.
///
[ApiMember(Description="The state number of the tax offices.")]
public virtual string FinanzamtLandNummer { get; set; }
}
}
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 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.")]
public partial class HoleFinanzaemterResponse
: EricFehlerCodeResponse
{
///
///The list of federal tax offices for a specified state.
///
[ApiMember(Description="The list of federal tax offices for a specified state.")]
public virtual EricHoleFinanzaemter Rueckgabe { get; set; }
}
}