/* Options: Date: 2024-04-28 08:55:47 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.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: True //ExportValueTypes: False IncludeTypes: BatchCheckElster.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; 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; 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.Services.Contracts.Requests { /// ///A synchronous service to perform basic checks on a batch of tax data. /// [Route("/BatchCheckElster", "POST")] [Api(Description="A synchronous service to perform basic checks on a batch of tax data.")] public partial class BatchCheckElster : BatchCheckElsterBase, IReturn> { public BatchCheckElster() { Data = new List{}; } /// ///The batch of ELSTER tax data to check. /// [ApiMember(Description="The batch of ELSTER tax data to check.", Name="Data")] public virtual List Data { get; set; } } /// ///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 BatchCheckElsterBase : IPost { public BatchCheckElsterBase() { Data = new List{}; } /// ///The batch of ELSTER tax data to check. /// [ApiMember(Description="The batch of ELSTER tax data to check.", Name="Data")] public virtual List Data { get; set; } } }