/* Options:
Date: 2026-01-25 04:52:52
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: HoleFinanzamtLandNummern.*
//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 state details of German tax offices.
///
[Api(Description="Represents a structure that encapsulates a list of state details of German tax offices.")]
public partial class EricHoleFinanzamtLandNummern
{
///
///The list of state details of German tax offices.
///
[ApiMember(Description="The list of state details of German tax offices.", Name="FinanzamtLaender")]
public virtual List FinanzamtLaender { get; set; } = [];
}
///
///Represents the state details of a German tax office.
///
[Api(Description="Represents the state details of a German tax office.")]
public partial class FinanzamtLand
{
///
///The identification number of the state.
///
[ApiMember(Description="The identification number of the state.", Name="FinanzamtLandNummer")]
public virtual string FinanzamtLandNummer { get; set; }
///
///The name of the state.
///
[ApiMember(Description="The name of the state.", Name="Name")]
public virtual string Name { get; set; }
}
}
namespace PwC.xEric.Core.Services.Contracts.Requests
{
///
///A synchronous service to get the list of tax office numbers for a specified federal state.
///
[Route("/HoleFinanzamtLandNummern", "GET")]
[Api(Description="A synchronous service to get the list of tax office numbers for a specified federal state.")]
public partial class HoleFinanzamtLandNummern
: HoleFinanzamtLandNummernBase, IReturn
{
}
///
///A base service to get the list of tax office numbers for a specified federal state.
///
[Api(Description="A base service to get the list of tax office numbers for a specified federal state.")]
public partial class HoleFinanzamtLandNummernBase
: 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 all tax office numbers.
///
[Api(Description="Represents a type that encapsulates the return values of the ERiC API function, which retrieves all tax office numbers.")]
public partial class HoleFinanzamtLandNummernResponse
: EricFehlerCodeResponse
{
///
///The list of all tax office numbers.
///
[ApiMember(Description="The list of all tax office numbers.")]
public virtual EricHoleFinanzamtLandNummern Rueckgabe { get; set; }
}
}