(* Options: Date: 2026-01-25 15:47:51 Version: 8.90 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.staging.pwc.de //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: HoleFinanzamtLandNummern.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace PwC.xEric.Core.Domain.Concretes.Models open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Net /// ///A base service to get the list of tax office numbers for a specified federal state. /// [] [] type HoleFinanzamtLandNummernBase() = interface IGet /// ///Represents the state details of a German tax office. /// [] [] type FinanzamtLand() = /// ///The identification number of the state. /// [] member val FinanzamtLandNummer:String = null with get,set /// ///The name of the state. /// [] member val Name:String = null with get,set /// ///Represents a structure that encapsulates a list of state details of German tax offices. /// [] [] type EricHoleFinanzamtLandNummern() = /// ///The list of state details of German tax offices. /// [] member val FinanzamtLaender:ResizeArray = null with get,set /// ///Represent a base response that encapsulate any ERiC API function return value. /// [] [] type EricFehlerCodeResponse() = inherit ServiceReponseBase() /// ///The status code that the ERiC API function returns. /// [] member val StatusCode:EricFehlerCode = new EricFehlerCode() with get,set /// ///The status message that the ERiC API function returns. /// [] member val StatusText:String = null with get,set /// ///Represents a type that encapsulates the return values of the ERiC API function, which retrieves all tax office numbers. /// [] [] type HoleFinanzamtLandNummernResponse() = inherit EricFehlerCodeResponse() /// ///The list of all tax office numbers. /// [] member val Rueckgabe:EricHoleFinanzamtLandNummern = null with get,set /// ///A synchronous service to get the list of tax office numbers for a specified federal state. /// [] [] [] type HoleFinanzamtLandNummern() = inherit HoleFinanzamtLandNummernBase() interface IReturn