' Options:
'Date: 2025-04-05 04:24:32
'Version: 8.52
'Tip: To override a DTO option, remove "''" prefix before updating
'BaseUrl: https://taxfiling.pwc.de
'
'''GlobalNamespace: 
'''MakePartial: True
'''MakeVirtual: True
'''MakeDataContractsExtensible: False
'''AddReturnMarker: True
'''AddDescriptionAsComments: True
'''AddDataContractAttributes: False
'''AddIndexesToDataMembers: False
'''AddGeneratedCodeAttributes: False
'''AddResponseStatus: False
'''AddImplicitVersion: 
'''InitializeCollections: False
'''ExportValueTypes: False
'IncludeTypes: ValidiereAsync.*
'''ExcludeTypes: 
'''AddNamespaces: 
'''AddDefaultXmlNamespace: http://schemas.servicestack.net/types

Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports System.Net
Imports PwC.xEric.Core.Domain.Concretes.Models
Imports PwC.xEric.Core.Services.Contracts.Requests
Imports PwC.DigitalHub.Utilities.IO.Core.Concretes.Models
Imports PwC.DigitalHub.Utilities.Domain.IO.Contracts
Imports PwC.xEric.Core.Domain.Contracts.Enums
Imports PwC.xEric.Core.Services.Contracts.Responses

Namespace Global

    Namespace PwC.DigitalHub.Utilities.Domain.IO.Contracts

        '''<Summary>
        '''Represents a base class for a file with raw data.
        '''</Summary>
        <Api(Description:="Represents a base class for a file with raw data.")>
        Public Partial Class FileBase
            '''<Summary>
            '''The raw data content of the file in bytes.
            '''</Summary>
            <ApiMember(Description:="The raw data content of the file in bytes.", Name:="Content")>
            Public Overridable Property Content As Byte()
        End Class

        Public Interface IFileMetadata
            Property Name As String
            Property FullName As String
            Property LastAccessTime As Date
            Property LastAccessTimeUtc As Date
            Property LastWriteTime As Date
            Property LastWriteTimeUtc As Date
            Property Length As Long
            Property UserId As Integer
            Property GroupId As Integer
            Property GroupCanExecute As Boolean
            Property GroupCanWrite As Boolean
            Property GroupCanRead As Boolean
            Property OwnerCanRead As Boolean
            Property OwnerCanExecute As Boolean
            Property OwnerCanWrite As Boolean
            Property OthersCanRead As Boolean
            Property OthersCanExecute As Boolean
            Property OthersCanWrite As Boolean
            Property Extensions As Dictionary(Of String, String)
        End Interface
    End Namespace

    Namespace PwC.DigitalHub.Utilities.IO.Core.Concretes.Models

        '''<Summary>
        '''Represents a generic file that contains raw data content in bytes
        '''</Summary>
        <Api(Description:="Represents a generic file that contains raw data content in bytes")>
        Public Partial Class BinaryFile
            Inherits FileBase
            '''<Summary>
            '''The attributes of the file.
            '''</Summary>
            <ApiMember(Description:="The attributes of the file.")>
            Public Overridable Property Metadata As FileMetadata

            '''<Summary>
            '''The name of the file without information on its directory path.
            '''</Summary>
            <ApiMember(Description:="The name of the file without information on its directory path.")>
            Public Overridable Property Name As String
        End Class

        '''<Summary>
        '''Represents information about a file or directory.
        '''</Summary>
        <Api(Description:="Represents information about a file or directory.")>
        Public Partial Class FileMetadata
            Implements IFileMetadata
            '''<Summary>
            '''The name of the file.For files, gets the name of the file.For directories, gets the name of the last directory in the hierarchy if a hierarchy exists; otherwise, the name of the directory.
            '''</Summary>
            <ApiMember(Description:="The name of the file.
For files, gets the name of the file.
For directories, gets the name of the last directory in the hierarchy if a hierarchy exists; otherwise, the name of the directory.")>
            Public Overridable Property Name As String Implements IFileMetadata.Name

            '''<Summary>
            '''The full path of the directory or file.
            '''</Summary>
            <ApiMember(Description:="The full path of the directory or file.")>
            Public Overridable Property FullName As String Implements IFileMetadata.FullName

            '''<Summary>
            '''The time the current file or directory was last accessed.
            '''</Summary>
            <ApiMember(Description:="The time the current file or directory was last accessed.")>
            Public Overridable Property LastAccessTime As Date Implements IFileMetadata.LastAccessTime

            '''<Summary>
            '''The name of the file.
            '''</Summary>
            <ApiMember(Description:="The name of the file.")>
            Public Overridable Property LastAccessTimeUtc As Date Implements IFileMetadata.LastAccessTimeUtc

            '''<Summary>
            '''The time when the current file or directory was last written to.
            '''</Summary>
            <ApiMember(Description:="The time when the current file or directory was last written to.")>
            Public Overridable Property LastWriteTime As Date Implements IFileMetadata.LastWriteTime

            '''<Summary>
            '''The time, in coordinated universal time (UTC), when the current file or directory was last written to.
            '''</Summary>
            <ApiMember(Description:="The time, in coordinated universal time (UTC), when the current file or directory was last written to.")>
            Public Overridable Property LastWriteTimeUtc As Date Implements IFileMetadata.LastWriteTimeUtc

            '''<Summary>
            '''The size, in bytes, of the current file.
            '''</Summary>
            <ApiMember(Description:="The size, in bytes, of the current file.")>
            Public Overridable Property Length As Long Implements IFileMetadata.Length

            '''<Summary>
            '''The size, in bytes, of the current file.
            '''</Summary>
            <ApiMember(Description:="The size, in bytes, of the current file.")>
            Public Overridable Property UserId As Integer Implements IFileMetadata.UserId

            '''<Summary>
            '''The file group id.
            '''</Summary>
            <ApiMember(Description:="The file group id.")>
            Public Overridable Property GroupId As Integer Implements IFileMetadata.GroupId

            '''<Summary>
            '''A value that indicates whether the others can read from this file.
            '''</Summary>
            <ApiMember(Description:="A value that indicates whether the others can read from this file.")>
            Public Overridable Property OthersCanRead As Boolean Implements IFileMetadata.OthersCanRead

            '''<Summary>
            '''A value that indicates whether the group members can execute this file.
            '''</Summary>
            <ApiMember(Description:="A value that indicates whether the group members can execute this file.")>
            Public Overridable Property GroupCanExecute As Boolean Implements IFileMetadata.GroupCanExecute

            '''<Summary>
            '''A value that indicates whether the group members can write into this file.
            '''</Summary>
            <ApiMember(Description:="A value that indicates whether the group members can write into this file.")>
            Public Overridable Property GroupCanWrite As Boolean Implements IFileMetadata.GroupCanWrite

            '''<Summary>
            '''A value that indicates whether the group members can read from this file.
            '''</Summary>
            <ApiMember(Description:="A value that indicates whether the group members can read from this file.")>
            Public Overridable Property GroupCanRead As Boolean Implements IFileMetadata.GroupCanRead

            '''<Summary>
            '''A value that indicates whether the owner can execute this file.
            '''</Summary>
            <ApiMember(Description:="A value that indicates whether the owner can execute this file.")>
            Public Overridable Property OwnerCanExecute As Boolean Implements IFileMetadata.OwnerCanExecute

            '''<Summary>
            '''A value that indicates whether the owner can write into this file.
            '''</Summary>
            <ApiMember(Description:="A value that indicates whether the owner can write into this file.")>
            Public Overridable Property OwnerCanWrite As Boolean Implements IFileMetadata.OwnerCanWrite

            '''<Summary>
            '''A value that indicates whether the owner can read from this file.
            '''</Summary>
            <ApiMember(Description:="A value that indicates whether the owner can read from this file.")>
            Public Overridable Property OwnerCanRead As Boolean Implements IFileMetadata.OwnerCanRead

            '''<Summary>
            '''A value that indicates whether others can read from this file.
            '''</Summary>
            <ApiMember(Description:="A value that indicates whether others can read from this file.")>
            Public Overridable Property OthersCanExecute As Boolean Implements IFileMetadata.OthersCanExecute

            '''<Summary>
            '''A value that indicates whether others can write into this file.
            '''</Summary>
            <ApiMember(Description:="A value that indicates whether others can write into this file.")>
            Public Overridable Property OthersCanWrite As Boolean Implements IFileMetadata.OthersCanWrite

            '''<Summary>
            '''Extensions to the file attributes.
            '''</Summary>
            <ApiMember(Description:="Extensions to the file attributes.")>
            Public Overridable Property Extensions As Dictionary(Of String, String) Implements IFileMetadata.Extensions = New Dictionary(Of String, String)
        End Class
    End Namespace

    Namespace PwC.xEric.Core.Domain.Concretes.Models

        '''<Summary>
        '''Represents information on the encryption of tax data.
        '''</Summary>
        <Api(Description:="Represents information on the encryption of tax data.")>
        Public Partial Class Datei
            '''<Summary>
            '''The type of data encryption used.
            '''</Summary>
            <ApiMember(Description:="The type of data encryption used.", IsRequired:=true)>
            Public Overridable Property Verschluesselung As Verschluesselungsart

            '''<Summary>
            '''The type of data compression used.
            '''</Summary>
            <ApiMember(Description:="The type of data compression used.", IsRequired:=true)>
            Public Overridable Property Kompression As Kompression

            '''<Summary>
            '''The transport key used in the encryption.
            '''</Summary>
            <ApiMember(Description:="The transport key used in the encryption.")>
            Public Overridable Property TransportSchluessel As String

            '''<Summary>
            '''[Documentation unavailable]
            '''</Summary>
            <ApiMember(Description:="[Documentation unavailable]")>
            Public Overridable Property Erstellung As Erstellung
        End Class

        '''<Summary>
        '''Represents the data part of an ELSTER document.
        '''</Summary>
        <Api(Description:="Represents the data part of an ELSTER document.")>
        Public Partial Class DatenTeil
            '''<Summary>
            '''The blocks of tax data of the ELSTER document.
            '''</Summary>
            <ApiMember(Description:="The blocks of tax data of the ELSTER document.", IsRequired:=true)>
            Public Overridable Property Nutzdatenbloecke As List(Of Nutzdatenblock) = New List(Of Nutzdatenblock)
        End Class

        '''<Summary>
        '''Represents an ELSTER document.
        '''</Summary>
        <Api(Description:="Represents an ELSTER document.")>
        Public Partial Class Elster
            '''<Summary>
            '''The transfer header part of the ELSTER document.
            '''</Summary>
            <ApiMember(Description:="The transfer header part of the ELSTER document.", IsRequired:=true)>
            Public Overridable Property TransferHeader As TransferHeader

            '''<Summary>
            '''The data (facts) part of the ELSTER document.
            '''</Summary>
            <ApiMember(Description:="The data (facts) part of the ELSTER document.", IsRequired:=true)>
            Public Overridable Property DatenTeil As DatenTeil
        End Class

        '''<Summary>
        '''Represents a receiver of tax data.
        '''</Summary>
        <Api(Description:="Represents a receiver of tax data.")>
        Public Partial Class Empfaenger
            '''<Summary>
            '''The identifier of the receiver.
            '''</Summary>
            <ApiMember(Description:="The identifier of the receiver.", IsRequired:=true)>
            Public Overridable Property Id As String

            '''<Summary>
            '''The destination of the receiver.
            '''</Summary>
            <ApiMember(Description:="The destination of the receiver.")>
            Public Overridable Property Ziel As String
        End Class

        '''<Summary>
        '''Represents a receriver ID
        '''</Summary>
        Public Enum EmpfaengerID
            L
            F
        End Enum

        '''<Summary>
        '''Represents information returned from a successful tax declaration process.
        '''</Summary>
        <Api(Description:="Represents information returned from a successful tax declaration process.")>
        Public Partial Class Erfolg
            '''<Summary>
            '''The generated tele-number for the successful tax declaration process.
            '''</Summary>
            <ApiMember(Description:="The generated tele-number for the successful tax declaration process.")>
            Public Overridable Property Telenummer As List(Of String) = New List(Of String)

            '''<Summary>
            '''The classification key for the successful tax declaration process.
            '''</Summary>
            <ApiMember(Description:="The classification key for the successful tax declaration process.")>
            Public Overridable Property Ordnungsbegriffe As List(Of String) = New List(Of String)
        End Class

        '''<Summary>
        '''Represents a structure that contains the first output of the ERiC tax data submission process.
        '''</Summary>
        <Api(Description:="Represents a structure that contains the first output of the ERiC tax data submission process.")>
        Public Partial Class EricBearbeiteVorgang
            '''<Summary>
            '''Information from the successful processing a tax declaration.
            '''</Summary>
            <ApiMember(Description:="Information from the successful processing a tax declaration.")>
            Public Overridable Property Erfolg As Erfolg

            '''<Summary>
            '''Gets or sets information on all data deliveries, including deliveries that have not been confirmed by the server.
            '''</Summary>
            <ApiMember(Description:="Gets or sets information on all data deliveries, including deliveries that have not been confirmed by the server.")>
            Public Overridable Property Transfers As Transfers

            '''<Summary>
            '''Error rules that result from the processing of a tax declaration.
            '''</Summary>
            <ApiMember(Description:="Error rules that result from the processing of a tax declaration.")>
            Public Overridable Property FehlerRegelpruefungen As List(Of FehlerRegelpruefung) = New List(Of FehlerRegelpruefung)

            '''<Summary>
            '''Hints that result the processing of a tax declaration.
            '''</Summary>
            <ApiMember(Description:="Hints that result the processing of a tax declaration.")>
            Public Overridable Property Hinweise As List(Of Hinweis) = New List(Of Hinweis)
        End Class

        '''<Summary>
        '''[Documentation unavailable]
        '''</Summary>
        <Api(Description:="[Documentation unavailable]")>
        Public Partial Class EricTyp
            '''<Summary>
            '''The content of the data. Currently supported: Raw XML (text), XmlElement, XElement or IXmlSerializable
            '''</Summary>
            <ApiMember(Description:="The content of the data. Currently supported: Raw XML (text), XmlElement, XElement or IXmlSerializable")>
            Public Overridable Property Inhalt As Object
        End Class

        '''<Summary>
        '''[Documentation unavailable]
        '''</Summary>
        <Api(Description:="[Documentation unavailable]")>
        Public Partial Class Erstellung
            '''<Summary>
            '''[Documentation unavailable]
            '''</Summary>
            <ApiMember(Description:="[Documentation unavailable]")>
            Public Overridable Property Eric As EricTyp
        End Class

        '''<Summary>
        '''Represents information on an ERiC reference.
        '''</Summary>
        <Api(Description:="Represents information on an ERiC reference.")>
        Public Partial Class FehlerRegelpruefung
            '''<Summary>
            '''The user data ticket of the reference.
            '''</Summary>
            <ApiMember(Description:="The user data ticket of the reference.")>
            Public Overridable Property Nutzdatenticket As String

            '''<Summary>
            '''The field identifier of the reference.
            '''</Summary>
            <ApiMember(Description:="The field identifier of the reference.")>
            Public Overridable Property Feldidentifikator As String

            '''<Summary>
            '''The multi-line index of the reference.
            '''</Summary>
            <ApiMember(Description:="The multi-line index of the reference.")>
            Public Overridable Property Mehrfachzeilenindex As String

            '''<Summary>
            '''The delivery number form of the reference.
            '''</Summary>
            <ApiMember(Description:="The delivery number form of the reference.")>
            Public Overridable Property LfdNrVordruck As String

            '''<Summary>
            '''Indicates the line number of the error field mentioned in the form.
            '''</Summary>
            <ApiMember(Description:="Indicates the line number of the error field mentioned in the form.")>
            Public Overridable Property VordruckZeilennummer As String

            '''<Summary>
            '''Specifies the value of one or more index fields that identify the context of error messages.
            '''</Summary>
            <ApiMember(Description:="Specifies the value of one or more index fields that identify the context of error messages.")>
            Public Overridable Property SemantischeIndexes As List(Of SemantischerIndex) = New List(Of SemantischerIndex)

            '''<Summary>
            '''The sub-subject-area of the reference.
            '''</Summary>
            <ApiMember(Description:="The sub-subject-area of the reference.")>
            Public Overridable Property Untersachbereich As String

            '''<Summary>
            '''The private identification number of the reference.
            '''</Summary>
            <ApiMember(Description:="The private identification number of the reference.")>
            Public Overridable Property PrivateKennnummer As String

            '''<Summary>
            '''The name of the rule that applies to the reference.
            '''</Summary>
            <ApiMember(Description:="The name of the rule that applies to the reference.")>
            Public Overridable Property RegelName As String

            '''<Summary>
            '''The technical error identifier of the reference.
            '''</Summary>
            <ApiMember(Description:="The technical error identifier of the reference.")>
            Public Overridable Property FachlicheFehlerId As String

            '''<Summary>
            '''The textual details of the reference.
            '''</Summary>
            <ApiMember(Description:="The textual details of the reference.")>
            Public Overridable Property Text As String
        End Class

        '''<Summary>
        '''Represents a manufacturer/vendor of tax software.
        '''</Summary>
        <Api(Description:="Represents a manufacturer/vendor of tax software.")>
        Public Partial Class Hersteller
            '''<Summary>
            '''The product name of the tax software produced by the manufacturer.
            '''</Summary>
            <ApiMember(Description:="The product name of the tax software produced by the manufacturer.", IsRequired:=true)>
            Public Overridable Property ProduktName As String

            '''<Summary>
            '''The product version of the tax software produced by the manufacturer.
            '''</Summary>
            <ApiMember(Description:="The product version of the tax software produced by the manufacturer.", IsRequired:=true)>
            Public Overridable Property ProduktVersion As String
        End Class

        Public Partial Class Hinweis
            '''<Summary>
            '''The user data ticket of the reference.
            '''</Summary>
            <ApiMember(Description:="The user data ticket of the reference.")>
            Public Overridable Property Nutzdatenticket As String

            '''<Summary>
            '''The field identifier of the reference.
            '''</Summary>
            <ApiMember(Description:="The field identifier of the reference.")>
            Public Overridable Property Feldidentifikator As String

            '''<Summary>
            '''The multi-line index of the reference.
            '''</Summary>
            <ApiMember(Description:="The multi-line index of the reference.")>
            Public Overridable Property Mehrfachzeilenindex As String

            '''<Summary>
            '''The delivery number form of the reference.
            '''</Summary>
            <ApiMember(Description:="The delivery number form of the reference.")>
            Public Overridable Property LfdNrVordruck As String

            '''<Summary>
            '''Indicates the line number of the error field mentioned in the form.
            '''</Summary>
            <ApiMember(Description:="Indicates the line number of the error field mentioned in the form.")>
            Public Overridable Property VordruckZeilennummer As String

            '''<Summary>
            '''Specifies the value of one or more index fields that identify the context of error messages.
            '''</Summary>
            <ApiMember(Description:="Specifies the value of one or more index fields that identify the context of error messages.")>
            Public Overridable Property SemantischeIndexes As List(Of SemantischerIndex) = New List(Of SemantischerIndex)

            '''<Summary>
            '''The sub-subject-area of the reference.
            '''</Summary>
            <ApiMember(Description:="The sub-subject-area of the reference.")>
            Public Overridable Property Untersachbereich As String

            '''<Summary>
            '''The private identification number of the reference.
            '''</Summary>
            <ApiMember(Description:="The private identification number of the reference.")>
            Public Overridable Property PrivateKennnummer As String

            '''<Summary>
            '''The name of the rule that applies to the reference.
            '''</Summary>
            <ApiMember(Description:="The name of the rule that applies to the reference.")>
            Public Overridable Property RegelName As String

            '''<Summary>
            '''The technical note identifier of the reference.
            '''</Summary>
            <ApiMember(Description:="The technical note identifier of the reference.")>
            Public Overridable Property FachlicheHinweisId As String

            '''<Summary>
            '''The textual details of the reference.
            '''</Summary>
            <ApiMember(Description:="The textual details of the reference.")>
            Public Overridable Property Text As String
        End Class

        '''<Summary>
        '''Represents a receiver of tax data.
        '''</Summary>
        <Api(Description:="Represents a receiver of tax data.")>
        Public Partial Class NDHEmpfaenger
            '''<Summary>
            '''The identifier of the receiver.
            '''</Summary>
            <ApiMember(Description:="The identifier of the receiver.", IsRequired:=true)>
            Public Overridable Property Id As EmpfaengerID

            '''<Summary>
            '''The value of the receiver.
            '''</Summary>
            <ApiMember(Description:="The value of the receiver.", IsRequired:=true)>
            Public Overridable Property Value As String
        End Class

        '''<Summary>
        '''Represents an encapsulation of tax data content.
        '''</Summary>
        <Api(Description:="Represents an encapsulation of tax data content.")>
        Public Partial Class Nutzdaten
            '''<Summary>
            '''The content of the tax data. This varies by tax declaration. Currently supported formats: Raw XML (text), XElement, and IXmlSerializable
            '''</Summary>
            <ApiMember(Description:="The content of the tax data. This varies by tax declaration. Currently supported formats: Raw XML (text), XElement, and IXmlSerializable", IsRequired:=true)>
            Public Overridable Property Inhalt As Object
        End Class

        '''<Summary>
        '''Represents a block of tax data.
        '''</Summary>
        <Api(Description:="Represents a block of tax data.")>
        Public Partial Class Nutzdatenblock
            '''<Summary>
            '''The header part of the block.
            '''</Summary>
            <ApiMember(Description:="The header part of the block.", IsRequired:=true)>
            Public Overridable Property NutzdatenHeader As NutzdatenHeader

            '''<Summary>
            '''The data part of the block.
            '''</Summary>
            <ApiMember(Description:="The data part of the block.", IsRequired:=true)>
            Public Overridable Property Nutzdaten As Nutzdaten
        End Class

        '''<Summary>
        '''Represents the header of a tax data.
        '''</Summary>
        <Api(Description:="Represents the header of a tax data.")>
        Public Partial Class NutzdatenHeader
            '''<Summary>
            '''The version of the header.
            '''</Summary>
            <ApiMember(Description:="The version of the header.", IsRequired:=true)>
            Public Overridable Property Version As String

            '''<Summary>
            '''The ticket identifier of the header.
            '''</Summary>
            <ApiMember(Description:="The ticket identifier of the header.", IsRequired:=true)>
            Public Overridable Property NutzdatenTicket As String

            '''<Summary>
            '''The receiver of the header.
            '''</Summary>
            <ApiMember(Description:="The receiver of the header.", IsRequired:=true)>
            Public Overridable Property Empfaenger As NDHEmpfaenger

            '''<Summary>
            '''The software manufacturer, through whose software the tax declaration or filing is submitted.
            '''</Summary>
            <ApiMember(Description:="The software manufacturer, through whose software the tax declaration or filing is submitted.", IsRequired:=true)>
            Public Overridable Property Hersteller As Hersteller

            '''<Summary>
            '''The details of the data provider (e.g. taxpayer, tax consulant or firm), who produced the tax data and it must not necessarily be the same person declared in the TransferHeader section.
            '''</Summary>
            <ApiMember(Description:="The details of the data provider (e.g. taxpayer, tax consulant or firm), who produced the tax data and it must not necessarily be the same person declared in the TransferHeader section.")>
            Public Overridable Property DatenLieferant As String

            '''<Summary>
            '''The return code of the header.
            '''</Summary>
            <ApiMember(Description:="The return code of the header.")>
            Public Overridable Property RC As RC

            '''<Summary>
            '''The data extensions of the header.
            '''</Summary>
            <ApiMember(Description:="The data extensions of the header.")>
            Public Overridable Property Zusatz As Zusatz
        End Class

        '''<Summary>
        '''Represents an ERiC return code.
        '''</Summary>
        <Api(Description:="Represents an ERiC return code.")>
        Public Partial Class RC
            '''<Summary>
            '''The return value of the return code.
            '''</Summary>
            <ApiMember(Description:="The return value of the return code.", IsRequired:=true)>
            Public Overridable Property Rueckgabe As Rueckgabe

            '''<Summary>
            '''The internal value of the return code.
            '''</Summary>
            <ApiMember(Description:="The internal value of the return code.")>
            Public Overridable Property Stack As Stack
        End Class

        '''<Summary>
        '''Represents an external error stack.
        '''</Summary>
        <Api(Description:="Represents an external error stack.")>
        Public Partial Class Rueckgabe
            '''<Summary>
            '''The external error code. Either a zero (0) if no external errors occurred; otherwise an error number.
            '''</Summary>
            <ApiMember(Description:="The external error code. Either a zero (0) if no external errors occurred; otherwise an error number.", IsRequired:=true)>
            Public Overridable Property Code As String

            '''<Summary>
            '''The external error message.
            '''</Summary>
            <ApiMember(Description:="The external error message.", IsRequired:=true)>
            Public Overridable Property Text As String
        End Class

        '''<Summary>
        '''Represents value of an index field, which identfies the context about an error message.
        '''</Summary>
        <Api(Description:="Represents value of an index field, which identfies the context about an error message.")>
        Public Partial Class SemantischerIndex
            '''<Summary>
            '''The name of the index field.
            '''</Summary>
            <ApiMember(Description:="The name of the index field.")>
            Public Overridable Property Name As String

            '''<Summary>
            '''The value of the index field.
            '''</Summary>
            <ApiMember(Description:="The value of the index field.")>
            Public Overridable Property Value As String
        End Class

        '''<Summary>
        '''Represents the signature and associated information of the compressed, encrypted, base64-encoded content of the data part of the tax declaration/statement.
        '''</Summary>
        <Api(Description:="Represents the signature and associated information of the compressed, encrypted, base64-encoded content of the data part of the tax declaration/statement.")>
        Public Partial Class SigUser
            '''<Summary>
            '''The content of the data. Currently supported: Raw XML (text), XElement or IXmlSerializable
            '''</Summary>
            <ApiMember(Description:="The content of the data. Currently supported: Raw XML (text), XElement or IXmlSerializable")>
            Public Overridable Property Inhalt As Object
        End Class

        '''<Summary>
        '''Represents an internal error stack.
        '''</Summary>
        <Api(Description:="Represents an internal error stack.")>
        Public Partial Class Stack
            '''<Summary>
            '''The internal error code. Either a zero (0) if no internal errors occurred; otherwise an error number.
            '''</Summary>
            <ApiMember(Description:="The internal error code. Either a zero (0) if no internal errors occurred; otherwise an error number.", IsRequired:=true)>
            Public Overridable Property Code As String

            '''<Summary>
            '''The external error message.
            '''</Summary>
            <ApiMember(Description:="The external error message.", IsRequired:=true)>
            Public Overridable Property Text As String
        End Class

        '''<Summary>
        '''Represents a structure that encapsulates a tax declaration.
        '''</Summary>
        <Api(Description:="Represents a structure that encapsulates a tax declaration.")>
        Public Partial Class TaxData
            '''<Summary>
            '''The unique identifier of the tax data.
            '''</Summary>
            <ApiMember(Description:="The unique identifier of the tax data.", IsRequired:=true)>
            Public Overridable Property Id As String

            '''<Summary>
            '''The XML-based tax declaration.
            '''</Summary>
            <ApiMember(Description:="The XML-based tax declaration.", IsRequired:=true)>
            Public Overridable Property Content As String
        End Class

        '''<Summary>
        '''Represents information on the delivery.
        '''</Summary>
        <Api(Description:="Represents information on the delivery.")>
        Public Partial Class Transfer
            '''<Summary>
            '''The ticket of the transfer.
            '''</Summary>
            <ApiMember(Description:="The ticket of the transfer.")>
            Public Overridable Property TransferTicket As String
        End Class

        '''<Summary>
        '''Represents the transfer header part of an ELSTER document.
        '''</Summary>
        <Api(Description:="Represents the transfer header part of an ELSTER document.")>
        Public Partial Class TransferHeader
            '''<Summary>
            '''The version of the transfer header.
            '''</Summary>
            <ApiMember(Description:="The version of the transfer header.", IsRequired:=true)>
            Public Overridable Property Version As String

            '''<Summary>
            '''The tax operation used in the ELSTER process.
            '''</Summary>
            <ApiMember(Description:="The tax operation used in the ELSTER process.", IsRequired:=true)>
            Public Overridable Property Verfahren As Verfahren

            '''<Summary>
            '''The tax data type of the ELSTER process.
            '''</Summary>
            <ApiMember(Description:="The tax data type of the ELSTER process.", IsRequired:=true)>
            Public Overridable Property DatenArt As Datenart

            '''<Summary>
            '''The authentification procedure of the ELSTER process.
            '''</Summary>
            <ApiMember(Description:="The authentification procedure of the ELSTER process.", IsRequired:=true)>
            Public Overridable Property Vorgang As Vorgang

            '''<Summary>
            '''The ticket identifier after a successful ELSTER process.
            '''</Summary>
            <ApiMember(Description:="The ticket identifier after a successful ELSTER process.")>
            Public Overridable Property TransferTicket As String

            '''<Summary>
            '''The flag that indicates whether the tax declaration or filing is a test case. For production purposes, this value should not be set.
            '''</Summary>
            <ApiMember(Description:="The flag that indicates whether the tax declaration or filing is a test case. For production purposes, this value should not be set.")>
            Public Overridable Property Testmerker As Testmerker?

            '''<Summary>
            '''The signature and associated information on the compressed, encrypted, base64-encoded content of the the data part of a tax declaration / statement.
            '''</Summary>
            <ApiMember(Description:="The signature and associated information on the compressed, encrypted, base64-encoded content of the the data part of a tax declaration / statement.")>
            Public Overridable Property SigUser As SigUser

            '''<Summary>
            '''The receiving ELSTER server.
            '''</Summary>
            <ApiMember(Description:="The receiving ELSTER server.")>
            Public Overridable Property Empfaenger As Empfaenger

            '''<Summary>
            '''The identifier of the software manufacturer, through whose software the tax declaration is filed.
            '''</Summary>
            <ApiMember(Description:="The identifier of the software manufacturer, through whose software the tax declaration is filed.", IsRequired:=true)>
            Public Overridable Property HerstellerID As String

            '''<Summary>
            '''The details of the provider that submits tax data.
            '''</Summary>
            <ApiMember(Description:="The details of the provider that submits tax data.", IsRequired:=true)>
            Public Overridable Property DatenLieferant As String

            '''<Summary>
            '''The date of receipt of the tax data.
            '''</Summary>
            <ApiMember(Description:="The date of receipt of the tax data.")>
            Public Overridable Property EingangsDatum As Date?

            '''<Summary>
            '''The encryption data required for authenticated transmission of tax data.
            '''</Summary>
            <ApiMember(Description:="The encryption data required for authenticated transmission of tax data.", IsRequired:=true)>
            Public Overridable Property Datei As Datei

            '''<Summary>
            '''The return code of the transfer header and is included in the response XML of the ELSTER server. The value should never be set by the data provider.
            '''</Summary>
            <ApiMember(Description:="The return code of the transfer header and is included in the response XML of the ELSTER server. The value should never be set by the data provider.")>
            Public Overridable Property RC As RC

            '''<Summary>
            '''The details of the software that submits the tax data.
            '''</Summary>
            <ApiMember(Description:="The details of the software that submits the tax data.")>
            Public Overridable Property VersionClient As String

            '''<Summary>
            '''Data extensions to the transfer header.
            '''</Summary>
            <ApiMember(Description:="Data extensions to the transfer header.")>
            Public Overridable Property Zusatz As Zusatz
        End Class

        '''<Summary>
        '''Represents information on all data deliveries, including deliveries that have not been confirmed by the server. For more information, see the ERiC developer manual in the 'TransferTicket' section.
        '''</Summary>
        <Api(Description:="Represents information on all data deliveries, including deliveries that have not been confirmed by the server. For more information, see the ERiC developer manual in the 'TransferTicket' section.")>
        Public Partial Class Transfers
            '''<Summary>
            '''Contains information on all data deliveries, including deliveries that have not been confirmed by the server.
            '''</Summary>
            <ApiMember(Description:="Contains information on all data deliveries, including deliveries that have not been confirmed by the server.")>
            Public Overridable Property TransferList As List(Of Transfer) = New List(Of Transfer)
        End Class

        '''<Summary>
        '''Represents an ERiC extension.
        '''</Summary>
        <Api(Description:="Represents an ERiC extension.")>
        Public Partial Class Zusatz
            '''<Summary>
            '''The user-customizable items for the extension. Data providers can use these items for their own extensions/information.
            '''</Summary>
            <ApiMember(Description:="The user-customizable items for the extension. Data providers can use these items for their own extensions/information.")>
            Public Overridable Property Infos As List(Of String) = New List(Of String)

            '''<Summary>
            '''The ELSTER items for the extension. They can be included in the response XML from the ELSTER server, if special information must be returned to the user after data submission. For example, for authenticated submission, information about impending certificate expiration etc. It must not be supplied by the data provider (even when empty).
            '''</Summary>
            <ApiMember(Description:="The ELSTER items for the extension. They can be included in the response XML from the ELSTER server, if special information must be returned to the user after data submission. For example, for authenticated submission, information about impending certificate expiration etc. It must not be supplied by the data provider (even when empty).")>
            Public Overridable Property ElsterInfos As List(Of String) = New List(Of String)
        End Class
    End Namespace

    Namespace PwC.xEric.Core.Domain.Contracts.Enums

        '''<Summary>
        '''Auflistung aller gültigen Datenarten.
        '''</Summary>
        Public Enum Datenart
            Anlage34a
            AnpassungVorauszahlung
            AntragUStVerguetung4a
            AbrufcodeAntrag
            AenderungAdresse
            AbrufcodeStorno
            AbrufvollmachtAnlage
            AbrufvollmachtUpdate
            AenderungBankverbindung
            AntraegeRechteLoeschen
            AntraegeUndRechte
            Aufzeichnung146a
            Bilanz
            Belegnachreichung
            BSBMitteilung
            BZSt2
            C19Mitteilung
            DUeAbmelden
            DUeAnmelden
            DUeUmmelden
            Einspruch
            EinspruchNachtrag
            EinspruchRuecknahme
            ELeVAntragELStAM
            ELeVErmaessigung
            ELeVGetrenntlebend
            ELeVSteuerklassenwechsel
            ELeVWiederaufnahmeEhe
            EPAntwort
            EPBescheid
            EPMitteilung
            EPKurzmitteilung
            ElsterErklaerungDaten
            ElsterKMVDaten
            ElsterLohn2Daten
            ElsterLohnDaten
            ElsterVaStDaten
            ElsterDIVADaten
            ElsterDIVDaten
            ElsterEPBescheidDaten
            ElsterEPMitteilungDaten
            EPStBescheidAbholung
            EPStMitteilungAbholung
            Erbschaftsteuer
            ESt
            EStbeschraenkt
            EUER
            EUn
            FEIN
            KStAntragOptionPersG
            FLHMitteilung
            FreistellungKapitalertraegeBV
            Fristverlaengerung
            FsEVerein
            Gewerbemeldung
            GDBMitteilung
            Gewinnermittlung13aEStG
            GewSt
            GewStZ
            GrundsteuerBW
            GrundsteuerBY
            GrundsteuerHE
            GrundsteuerHH
            GrundsteuerNI
            GrundsteuerAendAZ
            GrundsteuerAendAZBW
            GrundsteuerAendAZBY
            GrundsteuerAendAZHE
            GrundsteuerAendAZHH
            GrundsteuerAendAZNI
            Grundsteuerwert
            InvStG56Abs5
            InvStG51Feststellung
            IBANMeldung
            KapEStA
            KapEStInvStG
            KapG
            KapGAus
            KKVMitteilung
            Kontoabfrage
            Kontoinformation
            KSt
            KStAntragEinlagenrueck
            KStZ
            KStZerlegungVZ
            KTTAnmeldungHH
            KTTAnzeigeHH
            Lohnersatzleistung
            LohnersatzMitteilung
            LStA
            LStB
            LStHVVMAnlage
            LStHVVMUpdate
            LSTMitteilung
            OGHMitteilung
            MindestStUnternehmenEU
            MVOMitteilung
            MVZMitteilung
            FZLMitteilung
            NEKMitteilung
            VermoegenswirksameLeistung
            VMWiderruf
            VollmachtDetails
            VNoVMVRegistrierung
            VNoVMVUpdate
            VNoVMVLoeschung
            VollfAAnlage
            VollfAUpdate
            VMoVMVStBAnlage
            VMoVMVStBUpdate
            VMoVMVFreischaltung
            DIVADatenBZSt
            DivaEinwilligungAnlageBRM
            DivaEinwilligungFreisch
            DivaEinwilligungUpdateBRM
            DivaWiderrufBRM
            DivaErgebnisliste
            LStHVDivaAdresseBRM
            VMErgebnisListeVNSicht
            PersG
            PostfachAnfrage
            PostfachStatus
            ProtokollAnforderung
            RabeExtDatenhaltungCheck
            RabeExtDatenhaltungPflege
            Registrierung
            Schenkungsteuer
            SonstigeNachrichten
            SpezRechtAntrag
            SpezRechtFreischaltung
            SpezRechtListe
            SpezRechtStorno
            SpezRechtTeilnahme
            StAb50a
            StAbS50a
            Statusabfrage
            StundungAntrag
            UnentgeltlicheDepotuebertragung
            UENSTAnmeldungBE
            UENSTAnzeigeBE
            USt
            UStAKfzEinzel
            UStVA
            UStDV
            UStSV
            VAGMitteilung
            VGNAnmeldungHB
            VGNAnmeldungBE
            VGNAnmeldungHH
            VGNAnzeigeHH
            VGNAnzeigeBE
            WTBAnmeldungHB
            ZMDO
            ElsterVollmachtDaten
            MitteilungAbholung
            PostfachBestaetigung
        End Enum

        '''<Summary>
        '''Mit welcher Kompression wurden die Inhalte von den Elementen DatenLieferant und ggf. SigUser im TransferHeader und dem Element DatenTeil komprimiert.
        '''</Summary>
        Public Enum Kompression
            GZIP
            NO_BASE64
        End Enum

        '''<Summary>
        '''Kennzeichnung der Datenlieferung ob es sich um einen Testfall handelt, gilt fuer die gesamte Datenlieferung. Ein Echtfall enthält dieses Element nicht. Ein Testfall muss mit einem Testmerker versehen werden, damit er nicht wie ein Echtfall verarbeitet wird. Handelt es sich um Daten, die nur zum Testen des Frontends versendet wurden, müssen sie nicht mehr weiter verarbeitet werden.
        '''</Summary>
        Public Enum Testmerker
            TM010000001 = 10000001
            TM080000001 = 80000001
            TM160000001 = 160000001
            TM160000002 = 160000002
            TM220000000 = 220000000
            TM220002000 = 220002000
            TM230000001 = 230000001
            TM240000000 = 240000000
            TM300000002 = 300000002
            TM370000001 = 370000001
            TM520000000 = 520000000
            TM700000001 = 700000001
            TM700000004 = 700000004
        End Enum

        '''<Summary>
        '''Auflistung der gültigen Verfahren
        '''</Summary>
        Public Enum Verfahren
            ElsterAnmeldung
            ElsterBereitstellung
            ElsterBilanz
            ElsterBRM
            ElsterBRMOrg
            ElsterDatenabholung
            ElsterErklaerung
            ElsterExtern
            ElsterFSE
            ElsterKapESt
            ElsterKMV
            ElsterKontoabfrage
            ElsterLavendel
            ElsterLohn
            ElsterLohn2
            ElsterNachricht
            ElsterSignatur
            ElsterVollmachtDB
            ElsterRabe
        End Enum

        '''<Summary>
        '''Protokoll der Verschluesselung. Es kann vorkommen, dass verschieden Verschluesselungsarten eingesetzt werden, eine Unterscheidung ist hier nötig, um das richtige Entschluesselungstool anzusteuern. Mit welcher Verschluesselungsart wurden die Inhalte von den Elementen 'DatenLieferant' und ggf. 'SigUser' im TransferHeader und dem Element 'DatenTeil' verschluesselt
        '''</Summary>
        Public Enum Verschluesselungsart
            PKCS_7v1_5
            PKCS_7v1_5enveloped
            NO_BASE64
            CMSEncryptedData
            CMSEnvelopedData
            EnvelopedData__RSA_OAEP__AES_128__GZip__B64
        End Enum

        '''<Summary>
        '''Hauptinformation ob die Daten authentifiziert wurden (send-Auth) oder nicht (send-NoSig)
        '''</Summary>
        Public Enum Vorgang
            Send_Auth
            Send_Auth_Part
            Send_NoSig
            Send_NoSig_Part
        End Enum
    End Namespace

    Namespace PwC.xEric.Core.Services.Contracts.Requests

        '''<Summary>
        '''A base service to process tax data.
        '''</Summary>
        <Api(Description:="A base service to process tax data.")>
        Public Partial Class BearbeiteVorgangBase
            Implements IPost
            '''<Summary>
            '''The tax data to process.
            '''</Summary>
            <ApiMember(Description:="The tax data to process.")>
            Public Overridable Property Data As TaxData
        End Class

        '''<Summary>
        '''An asynchronous service to validate tax data.
        '''</Summary>
        <Route("/ValidiereAsync", "POST")>
        <Api(Description:="An asynchronous service to validate tax data.")>
        Public Partial Class ValidiereAsync
            Inherits BearbeiteVorgangBase
            Implements IReturn(Of BearbeiteVorgangResponse)
        End Class
    End Namespace

    Namespace PwC.xEric.Core.Services.Contracts.Responses

        '''<Summary>
        '''A type that encapsulates the return values from the ERiC API function that processes tax data.
        '''</Summary>
        <Api(Description:="A type that encapsulates the return values from the ERiC API function that processes tax data.")>
        Public Partial Class BearbeiteVorgangResponse
            Inherits EricFehlerCodeResponse
            '''<Summary>
            '''The return value of the process.
            '''</Summary>
            <ApiMember(Description:="The return value of the process.")>
            Public Overridable Property Rueckgabe As EricBearbeiteVorgang

            '''<Summary>
            '''The server response of the process.
            '''</Summary>
            <ApiMember(Description:="The server response of the process.")>
            Public Overridable Property Serverantwort As Elster

            '''<Summary>
            '''If available, the PDF-based files to represent generated transfer prototocols.
            '''</Summary>
            <ApiMember(Description:="If available, the PDF-based files to represent generated transfer prototocols.")>
            Public Overridable Property TransferProtocols As List(Of BinaryFile) = New List(Of BinaryFile)
        End Class

        '''<Summary>
        '''Represent a base response that encapsulate any ERiC API function return value.
        '''</Summary>
        <Api(Description:="Represent a base response that encapsulate any ERiC API function return value.")>
        Public Partial Class EricFehlerCodeResponse
            Inherits ServiceReponseBase
            '''<Summary>
            '''The status code that the ERiC API function returns.
            '''</Summary>
            <ApiMember(Description:="The status code that the ERiC API function returns.")>
            Public Overridable Property StatusCode As EricFehlerCode

            '''<Summary>
            '''The status message that the ERiC API function returns.
            '''</Summary>
            <ApiMember(Description:="The status message that the ERiC API function returns.")>
            Public Overridable Property StatusText As String
        End Class
    End Namespace
End Namespace