/* Options: Date: 2026-01-25 12:35:02 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: DekodiereDatenAsync.* //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.Certificates; using PwC.xEric.Core.Services.Contracts.Requests; using PwC.xEric.Core.Domain.Contracts.Models; using PwC.DigitalHub.Utilities.Domain.IO.Contracts; using PwC.xEric.Core.Services.Contracts.Responses; namespace PwC.DigitalHub.Utilities.Domain.IO.Contracts { /// ///Represents a base class for a file with raw data. /// [Api(Description="Represents a base class for a file with raw data.")] public partial class FileBase { /// ///The raw data content of the file in bytes. /// [ApiMember(Description="The raw data content of the file in bytes.", Name="Content")] public virtual byte[] Content { get; set; } } } namespace PwC.xEric.Core.Domain.Concretes.Certificates { /// ///Represents a portal certificate that is protected by a password. /// [Api(Description="Represents a portal certificate that is protected by a password.")] public partial class PortalCertificate : FileBase, ISecuredCertificate { /// ///The file name of the certificate. /// [ApiMember(Description="The file name of the certificate.")] [StringLength(128)] public virtual string Name { get; set; } /// ///The password to protect the certificate from unauthorized access. /// [StringLength(255)] [ApiMember(Description="The password to protect the certificate from unauthorized access.")] public virtual string Pin { get; set; } /// ///The description of the certificate. /// [StringLength(int.MaxValue)] [ApiMember(Description="The description of the certificate.")] public virtual string Description { get; set; } /// ///Tags that can be used to label or identify the certificate. /// [ApiMember(Description="Tags that can be used to label or identify the certificate.")] public virtual List Tags { get; set; } = []; } } namespace PwC.xEric.Core.Domain.Contracts.Models { public partial interface IHasIndex { int Index { get; set; } } public partial interface ISecuredCertificate { string Pin { get; set; } } } namespace PwC.xEric.Core.Services.Contracts.Requests { public partial class Base64EingabeData : IHasIndex { public virtual string Id { get; set; } public virtual string Base64Eingabe { get; set; } public virtual int Index { get; set; } } /// ///An asynchronous service to decrypt a batch of data using a specified portal certificate. /// [Route("/DekodiereDatenAsync", "POST")] [Api(Description="An asynchronous service to decrypt a batch of data using a specified portal certificate.")] public partial class DekodiereDatenAsync : DekodiereDatenBase, IReturn { } /// ///A base service to decrypt data using a specified portal certificate. /// [Api(Description="A base service to decrypt data using a specified portal certificate.")] public partial class DekodiereDatenBase : IPost { /// ///The authentification certificate. /// [ApiMember(Description="The authentification certificate.")] public virtual PortalCertificate Zertifikat { get; set; } /// ///The base-64-encrypted data that is retrieved with the 'ElsterDatenabholung' operation.It is usually located under the element /Elster/DatenTeil/Nutzdatenblock/Nutzdaten/Datenabholung/Abholung/Datenpaket of the ELSTER document. /// [ApiMember(Description="The base-64-encrypted data that is retrieved with the 'ElsterDatenabholung' operation.It is usually located under the element /Elster/DatenTeil/Nutzdatenblock/Nutzdaten/Datenabholung/Abholung/Datenpaket of the ELSTER document.")] public virtual Base64EingabeData Data { get; set; } } } namespace PwC.xEric.Core.Services.Contracts.Responses { /// ///Represents a type that encapsulates a decoded value. /// [Api(Description="Represents a type that encapsulates a decoded value.")] public partial class DekodiereDatenResponse : EricFehlerCodeResponse { /// ///The decoded value. /// [ApiMember(Description="The decoded value.")] public virtual string Rueckgabe { get; set; } } /// ///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; } } }