/* Options: Date: 2026-01-24 23:28:41 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: CheckElster.* //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.Domain.Concretes.Models; using PwC.xEric.Core.Services.Contracts.Requests; using PwC.xEric.Core.Domain.Contracts.Models; using PwC.xEric.Core.Services.Contracts.Responses; namespace PwC.xEric.Core.Domain.Concretes.Models { /// ///Represents a structure that encapsulates a tax declaration. /// [Api(Description="Represents a structure that encapsulates a tax declaration.")] public partial class TaxData { /// ///The unique identifier of the tax data. /// [ApiMember(Description="The unique identifier of the tax data.", IsRequired=true)] public virtual string Id { get; set; } /// ///The XML-based tax declaration. /// [ApiMember(Description="The XML-based tax declaration.", IsRequired=true)] public virtual string Content { get; set; } } } namespace PwC.xEric.Core.Domain.Contracts.Models { public partial interface IHasIndex { int Index { get; set; } } } namespace PwC.xEric.Core.Services.Contracts.Requests { /// ///A synchronous service to perform basic checks on a batch of tax data. /// [Route("/CheckElster", "POST")] [Api(Description="A synchronous service to perform basic checks on a batch of tax data.")] public partial class CheckElster : CheckElsterBase, IReturn { } /// ///A base service to perform basic checks on a batch of tax data. /// [Api(Description="A base service to perform basic checks on a batch of tax data.")] public partial class CheckElsterBase : IPost { /// ///The ELSTER tax data to check. /// [ApiMember(Description="The ELSTER tax data to check.", Name="Data")] public virtual TaxData Data { get; set; } } } namespace PwC.xEric.Core.Services.Contracts.Responses { /// ///Represents a type that encapulates the state of a provided ELSTER tax data. /// [Api(Description="Represents a type that encapulates the state of a provided ELSTER tax data.")] public partial class ElsterCheckResponse : ServiceReponseBase { /// ///Checks whether a portal certificate is required to sign the tax data. /// [ApiMember(Description="Checks whether a portal certificate is required to sign the tax data.")] public virtual bool ZertifikatErforderlich { get; set; } /// ///Checks whether a Manufacturer ID has been provided for the tax data. /// [ApiMember(Description="Checks whether a Manufacturer ID has been provided for the tax data.")] public virtual bool HatHerstellerId { get; set; } /// ///Checks whether a data provider has been provided for the tax data. /// [ApiMember(Description="Checks whether a data provider has been provided for the tax data.")] public virtual bool HatDatenlieferant { get; set; } /// ///Checks whether the PDF-based transfer protocol for the tax data can be printed out for the type of tax data. /// [ApiMember(Description="Checks whether the PDF-based transfer protocol for the tax data can be printed out for the type of tax data.")] public virtual bool TransferProtokollDruckbar { get; set; } } /// ///Specifies a service response from an ERiC service operation. /// [Api(Description="Specifies a service response from an ERiC service operation.")] public partial class ServiceReponseBase : IHasIndex { /// ///The unique identifier of the response. /// [ApiMember(Description="The unique identifier of the response.")] public virtual string Id { get; set; } /// ///The position of the response element in an indexed collection. /// [ApiMember(Description="The position of the response element in an indexed collection.")] public virtual int Index { get; set; } /// ///Metadata that contains structured error information on the service response. /// [ApiMember(Description="Metadata that contains structured error information on the service response.")] public virtual ResponseStatus ResponseStatus { get; set; } } }