Tax Filing Service

<back to all web services

SubmitZm2023Async

AsyncUmsatzsteuerZusammenfassende Meldung

An asynchronous service to submit content that represents a recapitulative tax declaration for 2023.

Requires Authentication
The following routes are available for this service:
POST/SubmitZm2023AsyncAn asynchronous service to submit content that represents a recapitulative tax declaration for 2023.
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports PwC.xEric.Core.Services.Contracts.Umsatzsteuer.Requests
Imports PwC.xEric.Core.Domain.Concretes.Umsatzsteuer.Anmeldungen
Imports PwC.xEric.Core.Domain.Concretes.Models
Imports PwC.DigitalHub.Utilities.IO.Core.Contracts.Models
Imports PwC.xEric.Core.Services.Contracts.Responses
Imports PwC.xEric.Core.Domain.Contracts.Models
Imports PwC.DigitalHub.Utilities.IO.Concretes.Models
Imports PwC.DigitalHub.Utilities.IO.Core.Concretes.Models

Namespace Global

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

        '''<Summary>
        '''Represents a file that contains raw data content in bytes
        '''</Summary>
        <Api(Description:="Represents a file that contains raw data content in bytes")>
        Public Partial Class BinaryFile
            Inherits FileBase
            Public Sub New()
                Content = New Byte(){}
            End Sub

            '''<Summary>
            '''The attributes of the file.
            '''</Summary>
            <ApiMember(Description:="The attributes of the file.", Name:="Metadata")>
            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.", Name:="Name")>
            Public Overridable Property Name As String

            '''<Summary>
            '''The raw data content of the file.
            '''</Summary>
            <ApiMember(Description:="The raw data content of the file.", Name:="Content")>
            Public Overridable Property Content As Byte()
        End Class
    End Namespace

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

        '''<Summary>
        '''Represents information about a file or directory.
        '''</Summary>
        <Api(Description:="Represents information about a file or directory.")>
        Public Partial Class FileMetadata
            Implements IFileMetadata
            Public Sub New()
                Extensions = New Dictionary(Of String, String)
            End Sub

            '''<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.", Name:="Name")>
            Public Overridable Property Name As String

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

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

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

            '''<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.", Name:="LastAccessTime")>
            Public Overridable Property LastWriteTime As Date

            '''<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.", Name:="LastWriteTimeUtc")>
            Public Overridable Property LastWriteTimeUtc As Date

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

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

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

            '''<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.", Name:="OthersCanRead")>
            Public Overridable Property OthersCanRead As Boolean

            '''<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.", Name:="GroupCanExecute")>
            Public Overridable Property GroupCanExecute As Boolean

            '''<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.", Name:="GroupCanWrite")>
            Public Overridable Property GroupCanWrite As Boolean

            '''<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.", Name:="GroupCanRead")>
            Public Overridable Property GroupCanRead As Boolean

            '''<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.", Name:="OwnerCanExecute")>
            Public Overridable Property OwnerCanExecute As Boolean

            '''<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.", Name:="OwnerCanWrite")>
            Public Overridable Property OwnerCanWrite As Boolean

            '''<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.", Name:="OthersCanRead")>
            Public Overridable Property OwnerCanRead As Boolean

            '''<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.", Name:="OthersCanExecute")>
            Public Overridable Property OthersCanExecute As Boolean

            '''<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.", Name:="OthersCanWrite")>
            Public Overridable Property OthersCanWrite As Boolean

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

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

        '''<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
            Public Sub New()
                Content = New Byte(){}
            End Sub

            '''<Summary>
            '''The raw data content of the file.
            '''</Summary>
            <ApiMember(Description:="The raw data content of the file.", Name:="Content")>
            Public Overridable Property Content As Byte()
        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.")>
            Public Overridable Property Verschluesselung As Verschluesselungsart

            '''<Summary>
            '''The type of data compression used.
            '''</Summary>
            <ApiMember(Description:="The type of data compression used.")>
            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
            Public Sub New()
                Nutzdatenbloecke = New List(Of Nutzdatenblock)
            End Sub

            '''<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)
        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.")>
            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.")>
            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 Nullable(Of Bundesland)
        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
            Public Sub New()
                Telenummer = New List(Of String)
                Ordnungsbegriffe = New List(Of String)
            End Sub

            '''<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)

            '''<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)
        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
            Public Sub New()
                FehlerRegelpruefungen = New List(Of FehlerRegelpruefung)
                Hinweise = New List(Of Hinweis)
            End Sub

            '''<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)

            '''<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)
        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
            Public Sub New()
                SemantischeIndexes = New List(Of SemantischerIndex)
            End Sub

            '''<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)

            '''<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 an amount of money without cents whose value has a maximum length of 11 digits. That is, 1 to 11 digits. Minus sign allowed.
        '''</Summary>
        <Api(Description:="Represents an amount of money without cents whose value has a maximum length of 11 digits. That is, 1 to 11 digits. Minus sign allowed.")>
        Public Partial Class GeldBetragOhneCent11EN
            Inherits GrossGeldBetragOhneCent
            '''<Summary>
            '''The intrinsic currency value.
            '''</Summary>
            <ApiMember(Description:="The intrinsic currency value.")>
            Public Overridable Property Wert As Long
        End Class

        '''<Summary>
        '''Specifies an amount of money without cents with limits and a specialized string representation
        '''</Summary>
        <Api(Description:="Specifies an amount of money without cents with limits and a specialized string representation")>
        Public Partial Class GrossGeldBetragOhneCent
            '''<Summary>
            '''The intrinsic currency value.
            '''</Summary>
            <ApiMember(Description:="The intrinsic currency value.")>
            Public Overridable Property Wert As Long
        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.")>
            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.")>
            Public Overridable Property ProduktVersion As String
        End Class

        Public Partial Class Hinweis
            Public Sub New()
                SemantischeIndexes = New List(Of SemantischerIndex)
            End Sub

            '''<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)

            '''<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.")>
            Public Overridable Property Id As EmpfaengerID

            '''<Summary>
            '''The value of the receiver.
            '''</Summary>
            <ApiMember(Description:="The value of the receiver.")>
            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 a portal certificate that is protected by a password.
        '''</Summary>
        <Api(Description:="Represents a portal certificate that is protected by a password.")>
        Public Partial Class PortalCertificate
            Inherits FileBase
            Implements ISecuredCertificate
            Implements IHasIndex
            Public Sub New()
                Tags = New List(Of String)
                Content = New Byte(){}
            End Sub

            '''<Summary>
            '''The unique identifier of the certificate.
            '''</Summary>
            <ApiMember(Description:="The unique identifier of the certificate.")>
            Public Overridable Property Id As Guid

            '''<Summary>
            '''The position of the certificate element in an indexed collection of certificates.
            '''</Summary>
            <ApiMember(Description:="The position of the certificate element in an indexed collection of certificates.")>
            Public Overridable Property Index As Integer

            '''<Summary>
            '''The password to protect the certificate from unauthorized access.
            '''</Summary>
            <StringLength(255)>
            <ApiMember(Description:="The password to protect the certificate from unauthorized access.")>
            Public Overridable Property Pin As String

            '''<Summary>
            '''The description of the certificate.
            '''</Summary>
            <StringLength(Integer.MaxValue)>
            <ApiMember(Description:="The description of the certificate.")>
            Public Overridable Property Description As String

            '''<Summary>
            '''Tags that can be used to label or identify the certificate.
            '''</Summary>
            <ApiMember(Description:="Tags that can be used to label or identify the certificate.")>
            Public Overridable Property Tags As List(Of String)

            '''<Summary>
            '''Gets or sets the file name of the certificate.
            '''</Summary>
            <ApiMember(Description:="Gets or sets the file name of the certificate.")>
            Public Overridable Property Name As String

            '''<Summary>
            '''The raw data content of the file.
            '''</Summary>
            <ApiMember(Description:="The raw data content of the file.", Name:="Content")>
            Public Overridable Property Content As Byte()
        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.")>
            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.")>
            Public Overridable Property Code As String

            '''<Summary>
            '''The external error message.
            '''</Summary>
            <ApiMember(Description:="The external error message.")>
            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.")>
            Public Overridable Property Code As String

            '''<Summary>
            '''The external error message.
            '''</Summary>
            <ApiMember(Description:="The external error message.")>
            Public Overridable Property Text 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 Nullable(Of 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 Nullable(Of 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.")>
            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
            Public Sub New()
                TransferList = New List(Of Transfer)
            End Sub

            '''<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)
        End Class

        '''<Summary>
        '''Represents an ERiC extension.
        '''</Summary>
        <Api(Description:="Represents an ERiC extension.")>
        Public Partial Class Zusatz
            Public Sub New()
                Infos = New List(Of String)
                ElsterInfos = New List(Of String)
            End Sub

            '''<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)

            '''<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)
        End Class
    End Namespace

    Namespace PwC.xEric.Core.Domain.Concretes.Umsatzsteuer.Anmeldungen

        '''<Summary>
        '''Angaben zum Unternehmen
        '''</Summary>
        <Api(Description:="Angaben zum Unternehmen")>
        Public Partial Class Anschrift
            '''<Summary>
            '''Der Name des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Der Name des Unternehmers.", IsRequired:=true, Name:="Name")>
            Public Overridable Property Name As String

            '''<Summary>
            '''Der Adresszusatz des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Der Adresszusatz des Unternehmers.", Name:="Adresszusatz")>
            Public Overridable Property Adresszusatz As String

            '''<Summary>
            '''Der Straßenname des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Der Straßenname des Unternehmers.", IsRequired:=true, Name:="Strasse")>
            Public Overridable Property Strasse As String

            '''<Summary>
            '''Die Hausnummer des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Die Hausnummer des Unternehmers.", Name:="Hausnr")>
            Public Overridable Property Hausnr As String

            '''<Summary>
            '''Der Hausnummerzusatz des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Der Hausnummerzusatz des Unternehmers.", Name:="Hausnrzusatz")>
            Public Overridable Property Hausnrzusatz As String

            '''<Summary>
            '''Der Ort des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Der Ort des Unternehmers.", IsRequired:=true, Name:="Ort")>
            Public Overridable Property Ort As String

            '''<Summary>
            '''Die Postleitzahl des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Die Postleitzahl des Unternehmers.", Name:="PLZ")>
            Public Overridable Property PLZ As String

            '''<Summary>
            '''Übermittlung des ISO-3166-Alpha-2-Codes des Staates von Unternehmer.
            '''</Summary>
            <ApiMember(Description:="Übermittlung des ISO-3166-Alpha-2-Codes des Staates von Unternehmer.", IsRequired:=true, Name:="Staat")>
            Public Overridable Property Staat As String

            '''<Summary>
            '''Die Telefonummer des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Die Telefonummer des Unternehmers.", Name:="Telefon")>
            Public Overridable Property Telefon As String
        End Class

        '''<Summary>
        '''Art der Meldung
        '''</Summary>
        Public Enum Meldeart
            Nein = 10
            Ja = 11
        End Enum

        '''<Summary>
        '''Meldungszeitraum
        '''</Summary>
        <Api(Description:="Meldungszeitraum")>
        Public Partial Class Mzr
            '''<Summary>
            '''Quartal
            '''</Summary>
            <ApiMember(Description:="Quartal", IsRequired:=true, Name:="Quart")>
            Public Overridable Property Quart As Quart

            '''<Summary>
            '''Die 4-stellige Jahreszahl, welche die Veranlagungszeitraum darstellt.
            '''</Summary>
            <ApiMember(Description:="Die 4-stellige Jahreszahl, welche die Veranlagungszeitraum darstellt.", IsRequired:=true, Name:="Jahr")>
            Public Overridable Property Jahr As Integer
        End Class

        '''<Summary>
        '''Die Art des Quartals
        '''</Summary>
        Public Enum Quart
            Q1 = 1
            Q2 = 2
            Q3 = 3
            Q4 = 4
            JM = 5
            M11 = 11
            M12 = 12
            M13 = 13
            M14 = 14
            M21 = 21
            M22 = 22
            M23 = 23
            M24 = 24
            M25 = 25
            M26 = 26
            M27 = 27
            M28 = 28
            M29 = 29
            M30 = 30
            M31 = 31
            M32 = 32
        End Enum

        '''<Summary>
        '''Die Art des Umsatzes.
        '''</Summary>
        Public Enum Umsatzart
            D
            L
            S
        End Enum

        '''<Summary>
        '''Die Art der Währung
        '''</Summary>
        Public Enum Waehrung
            UNGUELTIG
            EUR
        End Enum

        '''<Summary>
        '''Meldung der Warenlieferungen
        '''</Summary>
        <Api(Description:="Meldung der Warenlieferungen")>
        Public Partial Class Zeile
            '''<Summary>
            '''Umsatzart
            '''</Summary>
            <ApiMember(Description:="Umsatzart", IsRequired:=true, Name:="Umsatzart")>
            Public Overridable Property Umsatzart As Umsatzart

            '''<Summary>
            '''Umsatzsteuer-Identifikationsnummer des Erwerbers / Unternehmers in einem anderen Mitgliedstaat
            '''</Summary>
            <ApiMember(Description:="Umsatzsteuer-Identifikationsnummer des Erwerbers / Unternehmers in einem anderen Mitgliedstaat", IsRequired:=true, Name:="Knre")>
            Public Overridable Property Knre As String

            '''<Summary>
            '''Summe (Euro)
            '''</Summary>
            <ApiMember(Description:="Summe (Euro)", IsRequired:=true, Name:="Betrag")>
            Public Overridable Property Betrag As GeldBetragOhneCent11EN
        End Class

        '''<Summary>
        '''Allgemeine Daten
        '''</Summary>
        <Api(Description:="Allgemeine Daten")>
        Public Partial Class ZmZeilen
            Public Sub New()
                Zeilen = New List(Of Zeile)
            End Sub

            '''<Summary>
            '''Währung
            '''</Summary>
            <ApiMember(Description:="Währung", IsRequired:=true, Name:="Waehrung")>
            Public Overridable Property Waehrung As Waehrung

            '''<Summary>
            '''Berichtigte Meldung
            '''</Summary>
            <ApiMember(Description:="Berichtigte Meldung", IsRequired:=true, Name:="Meldeart")>
            Public Overridable Property Meldeart As Meldeart

            '''<Summary>
            '''Die in § 18a Absatz 1 Satz 2 UStG enthaltene Regelung nehme ich nicht in Anspruch.  Ich gebe die Zusammenfassende Meldung künftig monatlich ab. Diese Anzeige bindet mich bis zum Zeitpunkt des Widerrufs, mindestens aber für die Dauer von 12 Kalendermonaten.
            '''</Summary>
            <ApiMember(Description:="Die in § 18a Absatz 1 Satz 2 UStG enthaltene Regelung nehme ich nicht in Anspruch.  Ich gebe die Zusammenfassende Meldung künftig monatlich ab. Diese Anzeige bindet mich bis zum Zeitpunkt des Widerrufs, mindestens aber für die Dauer von 12 Kalendermonaten.", IsRequired:=true, Name:="Meldeart")>
            Public Overridable Property Anzeige As Boolean

            '''<Summary>
            '''Widerruf meiner Anzeige nach § 18a Absatz 1 UStG
            '''</Summary>
            <ApiMember(Description:="Widerruf meiner Anzeige nach § 18a Absatz 1 UStG", IsRequired:=true, Name:="Widerruf")>
            Public Overridable Property Widerruf As Boolean

            '''<Summary>
            '''Meldungszeitraum
            '''</Summary>
            <ApiMember(Description:="Meldungszeitraum", IsRequired:=true, Name:="Mzr")>
            Public Overridable Property Mzr As Mzr

            '''<Summary>
            '''Meldungen der Warenlieferungen
            '''</Summary>
            <ApiMember(Description:="Meldungen der Warenlieferungen", IsRequired:=true, Name:="Zeilen")>
            Public Overridable Property Zeilen As List(Of Zeile)
        End Class
    End Namespace

    Namespace PwC.xEric.Core.Domain.Contracts.Models

        '''<Summary>
        '''Einheitliche Abkürzungen fuer die Bundesländer bzw. alternative Empfänger
        '''</Summary>
        Public Enum Bundesland
            BW
            BY
            BE
            BB
            HB
            HH
            HE
            MV
            NI
            NW
            RP
            SL
            SN
            ST
            SH
            TH
            EC
            BF
            CS
            CD
            CM
            CN
            DS
            OP
            TK
            ZF
        End Enum

        '''<Summary>
        '''Auflistung aller gültigen Datenarten.
        '''</Summary>
        Public Enum Datenart
            Anlage34a
            AnpassungVorauszahlung
            AntragUStVerguetung4a
            AbrufcodeAntrag
            AenderungAdresse
            AbrufcodeStorno
            AbrufvollmachtAnlage
            AbrufvollmachtUpdate
            AenderungBankverbindung
            AntraegeRechteLoeschen
            AntraegeUndRechte
            Aufzeichnung146a
            BetPG
            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
            ForschungZulAntrag
            KStAntragOptionPersG
            FLHMitteilung
            FreistellungKapitalertraegeBV
            Fristverlaengerung
            FsEVerein
            Gewerbemeldung
            GDBMitteilung
            Gewinnermittlung13aEStG
            GewSt
            GewStZ
            GrundsteuerBW
            GrundsteuerBY
            GrundsteuerHE
            GrundsteuerHH
            GrundsteuerNI
            Grundsteuerwert
            InvStG56Abs5
            InvStG51Feststellung
            KapEStA
            KapEStInvStG
            KapG
            KapGAus
            KKVMitteilung
            Kontoabfrage
            Kontoinformation
            KSt
            KStZ
            KTTAnmeldungHH
            KTTAnzeigeHH
            Lohnersatzleistung
            LohnersatzMitteilung
            LStA
            LStB
            LStHVVMAnlage
            LStHVVMUpdate
            OGHMitteilung
            VermoegenswirksameLeistung
            VMWiderruf
            VollmachtDetails
            VNoVMVRegistrierung
            VNoVMVUpdate
            VNoVMVLoeschung
            VollfAAnlage
            VollfAUpdate
            VMoVMVStBAnlage
            VMoVMVStBUpdate
            VMoVMVFreischaltung
            VAGMitteilung
            DIVADatenBZSt
            DivaEinwilligungAnlageBRM
            DivaEinwilligungFreisch
            DivaEinwilligungUpdateBRM
            DivaWiderrufBRM
            DivaErgebnisliste
            LStHVDivaAdresseBRM
            VMErgebnisListeVNSicht
            PersG
            PostfachAnfrage
            PostfachStatus
            ProtokollAnforderung
            Registrierung
            Schenkungsteuer
            SonstigeNachrichten
            SpezRechtAntrag
            SpezRechtFreischaltung
            SpezRechtListe
            SpezRechtStorno
            SpezRechtTeilnahme
            StAb50a
            Statusabfrage
            UnentgeltlicheDepotuebertragung
            UENSTAnmeldungBE
            UENSTAnzeigeBE
            USt
            UStVA
            UStDV
            UStSV
            VGNAnmeldungHB
            VGNAnmeldungBE
            VGNAnmeldungHH
            VGNAnzeigeHH
            WTBAnmeldungHB
            ZMDO
            ElsterVollmachtDaten
            MitteilungAbholung
        End Enum

        '''<Summary>
        '''Enumeration of ERiC API error codes.
        '''</Summary>
        Public Enum EricFehlerCode
            ERIC_OK = 0
            ERIC_GLOBAL_UNKNOWN = 610001001
            ERIC_GLOBAL_PRUEF_FEHLER = 610001002
            ERIC_GLOBAL_HINWEISE = 610001003
            ERIC_GLOBAL_FEHLERMELDUNG_NICHT_VORHANDEN = 610001007
            ERIC_GLOBAL_KEINE_DATEN_VORHANDEN = 610001008
            ERIC_GLOBAL_NICHT_GENUEGEND_ARBEITSSPEICHER = 610001013
            ERIC_GLOBAL_DATEI_NICHT_GEFUNDEN = 610001014
            ERIC_GLOBAL_HERSTELLER_ID_NICHT_ERLAUBT = 610001016
            ERIC_GLOBAL_ILLEGAL_STATE = 610001017
            ERIC_GLOBAL_FUNKTION_NICHT_ERLAUBT = 610001018
            ERIC_GLOBAL_ECHTFALL_NICHT_ERLAUBT = 610001019
            ERIC_GLOBAL_NO_VERSAND_IN_BETA_VERSION = 610001020
            ERIC_GLOBAL_TESTMERKER_UNGUELTIG = 610001025
            ERIC_GLOBAL_DATENSATZ_ZU_GROSS = 610001026
            ERIC_GLOBAL_VERSCHLUESSELUNGS_PARAMETER_NICHT_ERLAUBT = 610001027
            ERIC_GLOBAL_NUR_PORTALZERTIFIKAT_ERLAUBT = 610001028
            ERIC_GLOBAL_ABRUFCODE_NICHT_ERLAUBT = 610001029
            ERIC_GLOBAL_ERROR_XML_CREATE = 610001030
            ERIC_GLOBAL_TEXTPUFFERGROESSE_FIX = 610001031
            ERIC_GLOBAL_INTERNER_FEHLER = 610001032
            ERIC_GLOBAL_ARITHMETIKFEHLER = 610001033
            ERIC_GLOBAL_STEUERNUMMER_UNGUELTIG = 610001034
            ERIC_GLOBAL_STEUERNUMMER_FALSCHE_LAENGE = 610001035
            ERIC_GLOBAL_STEUERNUMMER_NICHT_NUMERISCH = 610001036
            ERIC_GLOBAL_LANDESNUMMER_UNBEKANNT = 610001037
            ERIC_GLOBAL_BUFANR_UNBEKANNT = 610001038
            ERIC_GLOBAL_LANDESNUMMER_BUFANR = 610001039
            ERIC_GLOBAL_PUFFER_ZUGRIFFSKONFLIKT = 610001040
            ERIC_GLOBAL_PUFFER_UEBERLAUF = 610001041
            ERIC_GLOBAL_DATENARTVERSION_UNBEKANNT = 610001042
            ERIC_GLOBAL_DATENARTVERSION_XML_INKONSISTENT = 610001044
            ERIC_GLOBAL_COMMONDATA_NICHT_VERFUEGBAR = 610001045
            ERIC_GLOBAL_LOG_EXCEPTION = 610001046
            ERIC_GLOBAL_TRANSPORTSCHLUESSEL_NICHT_ERLAUBT = 610001047
            ERIC_GLOBAL_OEFFENTLICHER_SCHLUESSEL_UNGUELTIG = 610001048
            ERIC_GLOBAL_TRANSPORTSCHLUESSEL_TYP_FALSCH = 610001049
            ERIC_GLOBAL_PUFFER_UNGLEICHER_INSTANZ = 610001050
            ERIC_GLOBAL_VORSATZ_UNGUELTIG = 610001051
            ERIC_GLOBAL_DATEIZUGRIFF_VERWEIGERT = 610001053
            ERIC_GLOBAL_UNGUELTIGE_INSTANZ = 610001080
            ERIC_GLOBAL_NICHT_INITIALISIERT = 610001081
            ERIC_GLOBAL_MEHRFACHE_INITIALISIERUNG = 610001082
            ERIC_GLOBAL_FEHLER_INITIALISIERUNG = 610001083
            ERIC_GLOBAL_UNKNOWN_PARAMETER_ERROR = 610001102
            ERIC_GLOBAL_CHECK_CORRUPTED_NDS = 610001108
            ERIC_GLOBAL_VERSCHLUESSELUNGS_PARAMETER_NICHT_ANGEGEBEN = 610001206
            ERIC_GLOBAL_SEND_FLAG_MEHR_ALS_EINES = 610001209
            ERIC_GLOBAL_UNGUELTIGE_FLAG_KOMBINATION = 610001218
            ERIC_GLOBAL_ERSTE_SEITE_DRUCK_NICHT_UNTERSTUETZT = 610001220
            ERIC_GLOBAL_UNGUELTIGER_PARAMETER = 610001222
            ERIC_GLOBAL_DRUCK_FUER_VERFAHREN_NICHT_ERLAUBT = 610001224
            ERIC_GLOBAL_VERSAND_ART_NICHT_UNTERSTUETZT = 610001225
            ERIC_GLOBAL_UNGUELTIGE_PARAMETER_VERSION = 610001226
            ERIC_GLOBAL_TRANSFERHANDLE = 610001227
            ERIC_GLOBAL_PLUGININITIALISIERUNG = 610001228
            ERIC_GLOBAL_INKOMPATIBLE_VERSIONEN = 610001229
            ERIC_GLOBAL_VERSCHLUESSELUNGSVERFAHREN_NICHT_UNTERSTUETZT = 610001230
            ERIC_GLOBAL_MEHRFACHAUFRUFE_NICHT_UNTERSTUETZT = 610001231
            ERIC_GLOBAL_UTI_COUNTRY_NOT_SUPPORTED = 610001404
            ERIC_GLOBAL_IBAN_FORMALER_FEHLER = 610001501
            ERIC_GLOBAL_IBAN_LAENDERCODE_FEHLER = 610001502
            ERIC_GLOBAL_IBAN_LANDESFORMAT_FEHLER = 610001503
            ERIC_GLOBAL_IBAN_PRUEFZIFFER_FEHLER = 610001504
            ERIC_GLOBAL_BIC_FORMALER_FEHLER = 610001510
            ERIC_GLOBAL_BIC_LAENDERCODE_FEHLER = 610001511
            ERIC_GLOBAL_ZULASSUNGSNUMMER_ZU_LANG = 610001519
            ERIC_GLOBAL_IDNUMMER_UNGUELTIG = 610001525
            ERIC_GLOBAL_NULL_PARAMETER = 610001526
            ERIC_GLOBAL_EWAZ_UNGUELTIG = 610001527
            ERIC_GLOBAL_EWAZ_LANDESKUERZEL_UNBEKANNT = 610001528
            ERIC_GLOBAL_UPDATE_NECESSARY = 610001851
            ERIC_GLOBAL_EINSTELLUNG_NAME_UNGUELTIG = 610001860
            ERIC_GLOBAL_EINSTELLUNG_WERT_UNGUELTIG = 610001861
            ERIC_GLOBAL_ERR_DEKODIEREN = 610001862
            ERIC_GLOBAL_FUNKTION_NICHT_UNTERSTUETZT = 610001863
            ERIC_GLOBAL_NUTZDATENTICKETS_NICHT_EINDEUTIG = 610001865
            ERIC_GLOBAL_NUTZDATENHEADERVERSIONEN_UNEINHEITLICH = 610001866
            ERIC_GLOBAL_BUNDESLAENDER_UNEINHEITLICH = 610001867
            ERIC_GLOBAL_ZEITRAEUME_UNEINHEITLICH = 610001868
            ERIC_GLOBAL_NUTZDATENHEADER_EMPFAENGER_NICHT_KORREKT = 610001869
            ERIC_TRANSFER_COM_ERROR = 610101200
            ERIC_TRANSFER_VORGANG_NICHT_UNTERSTUETZT = 610101201
            ERIC_TRANSFER_ERR_XML_THEADER = 610101210
            ERIC_TRANSFER_ERR_PARAM = 610101251
            ERIC_TRANSFER_ERR_DATENTEILENDNOTFOUND = 610101253
            ERIC_TRANSFER_ERR_BEGINDATENLIEFERANT = 610101255
            ERIC_TRANSFER_ERR_ENDDATENLIEFERANT = 610101256
            ERIC_TRANSFER_ERR_BEGINTRANSPORTSCHLUESSEL = 610101257
            ERIC_TRANSFER_ERR_ENDTRANSPORTSCHLUESSEL = 610101258
            ERIC_TRANSFER_ERR_BEGINDATENGROESSE = 610101259
            ERIC_TRANSFER_ERR_ENDDATENGROESSE = 610101260
            ERIC_TRANSFER_ERR_SEND = 610101271
            ERIC_TRANSFER_ERR_NOTENCRYPTED = 610101274
            ERIC_TRANSFER_ERR_PROXYCONNECT = 610101276
            ERIC_TRANSFER_ERR_CONNECTSERVER = 610101278
            ERIC_TRANSFER_ERR_NORESPONSE = 610101279
            ERIC_TRANSFER_ERR_PROXYAUTH = 610101280
            ERIC_TRANSFER_ERR_SEND_INIT = 610101282
            ERIC_TRANSFER_ERR_TIMEOUT = 610101283
            ERIC_TRANSFER_ERR_PROXYPORT_INVALID = 610101284
            ERIC_TRANSFER_ERR_OTHER = 610101291
            ERIC_TRANSFER_ERR_XML_NHEADER = 610101292
            ERIC_TRANSFER_ERR_XML_ENCODING = 610101293
            ERIC_TRANSFER_ERR_ENDSIGUSER = 610101294
            ERIC_TRANSFER_ERR_XMLTAG_NICHT_GEFUNDEN = 610101295
            ERIC_TRANSFER_ERR_DATENTEILFEHLER = 610101297
            ERIC_TRANSFER_EID_ZERTIFIKATFEHLER = 610101500
            ERIC_TRANSFER_EID_KEINKONTO = 610101510
            ERIC_TRANSFER_EID_IDNRNICHTEINDEUTIG = 610101511
            ERIC_TRANSFER_EID_SERVERFEHLER = 610101512
            ERIC_TRANSFER_EID_KEINCLIENT = 610101520
            ERIC_TRANSFER_EID_CLIENTFEHLER = 610101521
            ERIC_TRANSFER_EID_FEHLENDEFELDER = 610101522
            ERIC_TRANSFER_EID_IDENTIFIKATIONABGEBROCHEN = 610101523
            ERIC_TRANSFER_EID_NPABLOCKIERT = 610101524
            ERIC_CRYPT_ERROR_CREATE_KEY = 610201016
            ERIC_CRYPT_E_INVALID_HANDLE = 610201101
            ERIC_CRYPT_E_MAX_SESSION = 610201102
            ERIC_CRYPT_E_BUSY = 610201103
            ERIC_CRYPT_E_OUT_OF_MEM = 610201104
            ERIC_CRYPT_E_PSE_PATH = 610201105
            ERIC_CRYPT_E_PIN_WRONG = 610201106
            ERIC_CRYPT_E_PIN_LOCKED = 610201107
            ERIC_CRYPT_E_P7_READ = 610201108
            ERIC_CRYPT_E_P7_DECODE = 610201109
            ERIC_CRYPT_E_P7_RECIPIENT = 610201110
            ERIC_CRYPT_E_P12_READ = 610201111
            ERIC_CRYPT_E_P12_DECODE = 610201112
            ERIC_CRYPT_E_P12_SIG_KEY = 610201113
            ERIC_CRYPT_E_P12_ENC_KEY = 610201114
            ERIC_CRYPT_E_P11_SIG_KEY = 610201115
            ERIC_CRYPT_E_P11_ENC_KEY = 610201116
            ERIC_CRYPT_E_XML_PARSE = 610201117
            ERIC_CRYPT_E_XML_SIG_ADD = 610201118
            ERIC_CRYPT_E_XML_SIG_TAG = 610201119
            ERIC_CRYPT_E_XML_SIG_SIGN = 610201120
            ERIC_CRYPT_E_ENCODE_UNKNOWN = 610201121
            ERIC_CRYPT_E_ENCODE_ERROR = 610201122
            ERIC_CRYPT_E_XML_INIT = 610201123
            ERIC_CRYPT_E_ENCRYPT = 610201124
            ERIC_CRYPT_E_DECRYPT = 610201125
            ERIC_CRYPT_E_P11_SLOT_EMPTY = 610201126
            ERIC_CRYPT_E_NO_SIG_ENC_KEY = 610201127
            ERIC_CRYPT_E_LOAD_DLL = 610201128
            ERIC_CRYPT_E_NO_SERVICE = 610201129
            ERIC_CRYPT_E_ESICL_EXCEPTION = 610201130
            ERIC_CRYPT_E_TOKEN_TYPE_MISMATCH = 610201144
            ERIC_CRYPT_E_P12_CREATE = 610201146
            ERIC_CRYPT_E_VERIFY_CERT_CHAIN = 610201147
            ERIC_CRYPT_E_P11_ENGINE_LOADED = 610201148
            ERIC_CRYPT_E_USER_CANCEL = 610201149
            ERIC_CRYPT_ZERTIFIKAT = 610201200
            ERIC_CRYPT_SIGNATUR = 610201201
            ERIC_CRYPT_NICHT_UNTERSTUETZTES_PSE_FORMAT = 610201203
            ERIC_CRYPT_PIN_BENOETIGT = 610201205
            ERIC_CRYPT_PIN_STAERKE_NICHT_AUSREICHEND = 610201206
            ERIC_CRYPT_E_INTERN = 610201208
            ERIC_CRYPT_ZERTIFIKATSPFAD_KEIN_VERZEICHNIS = 610201209
            ERIC_CRYPT_ZERTIFIKATSDATEI_EXISTIERT_BEREITS = 610201210
            ERIC_CRYPT_PIN_ENTHAELT_UNGUELTIGE_ZEICHEN = 610201211
            ERIC_CRYPT_E_INVALID_PARAM_ABC = 610201212
            ERIC_CRYPT_CORRUPTED = 610201213
            ERIC_CRYPT_EIDKARTE_NICHT_UNTERSTUETZT = 610201214
            ERIC_CRYPT_E_SC_SLOT_EMPTY = 610201215
            ERIC_CRYPT_E_SC_NO_APPLET = 610201216
            ERIC_CRYPT_E_SC_SESSION = 610201217
            ERIC_CRYPT_E_P11_NO_SIG_CERT = 610201218
            ERIC_CRYPT_E_P11_INIT_FAILED = 610201219
            ERIC_CRYPT_E_P11_NO_ENC_CERT = 610201220
            ERIC_CRYPT_E_P12_NO_SIG_CERT = 610201221
            ERIC_CRYPT_E_P12_NO_ENC_CERT = 610201222
            ERIC_CRYPT_E_SC_ENC_KEY = 610201223
            ERIC_CRYPT_E_SC_NO_SIG_CERT = 610201224
            ERIC_CRYPT_E_SC_NO_ENC_CERT = 610201225
            ERIC_CRYPT_E_SC_INIT_FAILED = 610201226
            ERIC_CRYPT_E_SC_SIG_KEY = 610201227
            ERIC_IO_FEHLER = 610301001
            ERIC_IO_DATEI_INKORREKT = 610301005
            ERIC_IO_PARSE_FEHLER = 610301006
            ERIC_IO_NDS_GENERIERUNG_FEHLGESCHLAGEN = 610301007
            ERIC_IO_MASTERDATENSERVICE_NICHT_VERFUEGBAR = 610301010
            ERIC_IO_STEUERZEICHEN_IM_NDS = 610301014
            ERIC_IO_VERSIONSINFORMATIONEN_NICHT_GEFUNDEN = 610301031
            ERIC_IO_FALSCHES_VERFAHREN = 610301104
            ERIC_IO_READER_MEHRFACHE_STEUERFAELLE = 610301105
            ERIC_IO_READER_UNERWARTETE_ELEMENTE = 610301106
            ERIC_IO_READER_FORMALE_FEHLER = 610301107
            ERIC_IO_READER_FALSCHES_ENCODING = 610301108
            ERIC_IO_READER_MEHRFACHE_NUTZDATEN_ELEMENTE = 610301109
            ERIC_IO_READER_MEHRFACHE_NUTZDATENBLOCK_ELEMENTE = 610301110
            ERIC_IO_UNBEKANNTE_DATENART = 610301111
            ERIC_IO_READER_UNTERSACHBEREICH_UNGUELTIG = 610301114
            ERIC_IO_READER_ZU_VIELE_NUTZDATENBLOCK_ELEMENTE = 610301115
            ERIC_IO_READER_STEUERZEICHEN_IM_TRANSFERHEADER = 610301150
            ERIC_IO_READER_STEUERZEICHEN_IM_NUTZDATENHEADER = 610301151
            ERIC_IO_READER_STEUERZEICHEN_IN_DEN_NUTZDATEN = 610301152
            ERIC_IO_READER_ZU_VIELE_ANHAENGE = 610301190
            ERIC_IO_READER_ANHANG_ZU_GROSS = 610301191
            ERIC_IO_READER_ANHAENGE_ZU_GROSS = 610301192
            ERIC_IO_READER_SCHEMA_VALIDIERUNGSFEHLER = 610301200
            ERIC_IO_READER_UNBEKANNTE_XML_ENTITY = 610301201
            ERIC_IO_DATENTEILNOTFOUND = 610301252
            ERIC_IO_DATENTEILENDNOTFOUND = 610301253
            ERIC_IO_UEBERGABEPARAMETER_FEHLERHAFT = 610301300
            ERIC_IO_UNGUELTIGE_UTF8_SEQUENZ = 610301400
            ERIC_IO_UNGUELTIGE_ZEICHEN_IN_PARAMETER = 610301401
            ERIC_PRINT_INTERNER_FEHLER = 610501001
            ERIC_PRINT_DRUCKVORLAGE_NICHT_GEFUNDEN = 610501002
            ERIC_PRINT_UNGUELTIGER_DATEI_PFAD = 610501004
            ERIC_PRINT_INITIALISIERUNG_FEHLERHAFT = 610501007
            ERIC_PRINT_AUSGABEZIEL_UNBEKANNT = 610501008
            ERIC_PRINT_ABBRUCH_DRUCKVORBEREITUNG = 610501009
            ERIC_PRINT_ABBRUCH_GENERIERUNG = 610501010
            ERIC_PRINT_STEUERFALL_NICHT_UNTERSTUETZT = 610501011
            ERIC_PRINT_FUSSTEXT_ZU_LANG = 610501012
        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
            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
        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.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
            Public Sub New()
                TransferProtocols = New List(Of BinaryFile)
            End Sub

            '''<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)

            '''<Summary>
            '''The status code that the ERiC API function returns.
            '''</Summary>
            <ApiMember(Description:="The status code that the ERiC API function returns.", Name:="StatusCode")>
            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.", Name:="StatusText")>
            Public Overridable Property StatusText As String

            '''<Summary>
            '''The unique identifier of the response.
            '''</Summary>
            <ApiMember(Description:="The unique identifier of the response.", Name:="Id")>
            Public Overridable Property Id As String

            '''<Summary>
            '''The position of the response element in an indexed collection.
            '''</Summary>
            <ApiMember(Description:="The position of the response element in an indexed collection.", Name:="Index")>
            Public Overridable Property Index As Integer

            '''<Summary>
            '''Metadata that contains structured error information on the service response.
            '''</Summary>
            <ApiMember(Description:="Metadata that contains structured error information on the service response.", Name:="ResponseStatus")>
            Public Overridable Property ResponseStatus As ResponseStatus
        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.", Name:="StatusCode")>
            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.", Name:="StatusText")>
            Public Overridable Property StatusText As String

            '''<Summary>
            '''The unique identifier of the response.
            '''</Summary>
            <ApiMember(Description:="The unique identifier of the response.", Name:="Id")>
            Public Overridable Property Id As String

            '''<Summary>
            '''The position of the response element in an indexed collection.
            '''</Summary>
            <ApiMember(Description:="The position of the response element in an indexed collection.", Name:="Index")>
            Public Overridable Property Index As Integer

            '''<Summary>
            '''Metadata that contains structured error information on the service response.
            '''</Summary>
            <ApiMember(Description:="Metadata that contains structured error information on the service response.", Name:="ResponseStatus")>
            Public Overridable Property ResponseStatus As ResponseStatus
        End Class

        '''<Summary>
        '''Specifies a service response from an ERiC service operation.
        '''</Summary>
        <Api(Description:="Specifies a service response from an ERiC service operation.")>
        Public Partial Class ServiceReponseBase
            Implements IHasIndex
            '''<Summary>
            '''The unique identifier of the response.
            '''</Summary>
            <ApiMember(Description:="The unique identifier of the response.", Name:="Id")>
            Public Overridable Property Id As String

            '''<Summary>
            '''The position of the response element in an indexed collection.
            '''</Summary>
            <ApiMember(Description:="The position of the response element in an indexed collection.", Name:="Index")>
            Public Overridable Property Index As Integer

            '''<Summary>
            '''Metadata that contains structured error information on the service response.
            '''</Summary>
            <ApiMember(Description:="Metadata that contains structured error information on the service response.", Name:="ResponseStatus")>
            Public Overridable Property ResponseStatus As ResponseStatus
        End Class
    End Namespace

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

        '''<Summary>
        '''An asynchronous service to submit content that represents a recapitulative tax declaration for 2023.
        '''</Summary>
        <Api(Description:="An asynchronous service to submit content that represents a recapitulative tax declaration for 2023.")>
        Public Partial Class SubmitZm2023Async
            Inherits SubmitZm2023Base
            '''<Summary>
            '''Inländische Umsatzsteuer-Identifikationsnummer des Meldenden bestehend aus dem Länderkürzel 'DE' gefolgt von exakt 9 Ziffern.
            '''</Summary>
            <ApiMember(Description:="Inländische Umsatzsteuer-Identifikationsnummer des Meldenden bestehend aus dem Länderkürzel 'DE' gefolgt von exakt 9 Ziffern.", IsRequired:=true)>
            Public Overridable Property Knri As String

            '''<Summary>
            '''Angaben zum Unternehmer
            '''</Summary>
            <ApiMember(Description:="Angaben zum Unternehmer", IsRequired:=true)>
            Public Overridable Property Anschrift As Anschrift

            '''<Summary>
            '''Allgemeine Daten
            '''</Summary>
            <ApiMember(Description:="Allgemeine Daten", IsRequired:=true)>
            Public Overridable Property ZmZeilen As ZmZeilen

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

            '''<Summary>
            '''Should the PDF file be prepared for a double-sided printout with a margin for punching?.  True: The straight sides are indented to the left for a stitching margin for punching. False: There is no indentation of the straight sides. The created PDF is only intended for printing pages page by page.
            '''</Summary>
            <ApiMember(Description:="Should the PDF file be prepared for a double-sided printout with a margin for punching?.  True: The straight sides are indented to the left for a stitching margin for punching. False: There is no indentation of the straight sides. The created PDF is only intended for printing pages page by page.", Name:="DuplexDruck")>
            Public Overridable Property DuplexDruck As Nullable(Of Boolean)

            '''<Summary>
            '''Name prefix of the generated transfer protocol file.
            '''</Summary>
            <ApiMember(Description:="Name prefix of the generated transfer protocol file.", IsRequired:=true, Name:="ProtocolPrefix")>
            Public Overridable Property ProtocolPrefix As String

            '''<Summary>
            '''Footer text to be used on the printout (optional).
            '''</Summary>
            <ApiMember(Description:="Footer text to be used on the printout (optional).")>
            Public Overridable Property FussText As String

            '''<Summary>
            '''The authentification certificate.
            '''</Summary>
            <ApiMember(Description:="The authentification certificate.", IsRequired:=true)>
            Public Overridable Property Zertifikat As PortalCertificate

            '''<Summary>
            '''Gets or sets the retrieval code. This value MUST be given for the tax operation ElsterDatenabholung and tax data type ElsterVaStDaten, for which a SoftPSE certificate is used to sign.In other cases a null value should be given. It consists of 2 x 5 characters, which are joined by  '-'. Example: 'K6FG5 - RS32P'.
            '''</Summary>
            <ApiMember(Description:="Gets or sets the retrieval code. This value MUST be given for the tax operation ElsterDatenabholung and tax data type ElsterVaStDaten, for which a SoftPSE certificate is used to sign.In other cases a null value should be given. It consists of 2 x 5 characters, which are joined by  '-'. Example: 'K6FG5 - RS32P'.")>
            Public Overridable Property AbrufCode As String
        End Class

        '''<Summary>
        '''A base base service request to submit content that represents a recapitulative tax declaration for 2023.
        '''</Summary>
        <Api(Description:="A base base service request to submit content that represents a recapitulative tax declaration for 2023.")>
        Public Partial Class SubmitZm2023Base
            Implements IPost
            Implements IDruckRequest
            Implements IVeschlueselungsRequest
            '''<Summary>
            '''Inländische Umsatzsteuer-Identifikationsnummer des Meldenden bestehend aus dem Länderkürzel 'DE' gefolgt von exakt 9 Ziffern.
            '''</Summary>
            <ApiMember(Description:="Inländische Umsatzsteuer-Identifikationsnummer des Meldenden bestehend aus dem Länderkürzel 'DE' gefolgt von exakt 9 Ziffern.", IsRequired:=true)>
            Public Overridable Property Knri As String

            '''<Summary>
            '''Angaben zum Unternehmer
            '''</Summary>
            <ApiMember(Description:="Angaben zum Unternehmer", IsRequired:=true)>
            Public Overridable Property Anschrift As Anschrift

            '''<Summary>
            '''Allgemeine Daten
            '''</Summary>
            <ApiMember(Description:="Allgemeine Daten", IsRequired:=true)>
            Public Overridable Property ZmZeilen As ZmZeilen

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

            '''<Summary>
            '''Should the PDF file be prepared for a double-sided printout with a margin for punching?.  True: The straight sides are indented to the left for a stitching margin for punching. False: There is no indentation of the straight sides. The created PDF is only intended for printing pages page by page.
            '''</Summary>
            <ApiMember(Description:="Should the PDF file be prepared for a double-sided printout with a margin for punching?.  True: The straight sides are indented to the left for a stitching margin for punching. False: There is no indentation of the straight sides. The created PDF is only intended for printing pages page by page.", Name:="DuplexDruck")>
            Public Overridable Property DuplexDruck As Nullable(Of Boolean)

            '''<Summary>
            '''Name prefix of the generated transfer protocol file.
            '''</Summary>
            <ApiMember(Description:="Name prefix of the generated transfer protocol file.", IsRequired:=true, Name:="ProtocolPrefix")>
            Public Overridable Property ProtocolPrefix As String

            '''<Summary>
            '''Footer text to be used on the printout (optional).
            '''</Summary>
            <ApiMember(Description:="Footer text to be used on the printout (optional).")>
            Public Overridable Property FussText As String

            '''<Summary>
            '''The authentification certificate.
            '''</Summary>
            <ApiMember(Description:="The authentification certificate.", IsRequired:=true)>
            Public Overridable Property Zertifikat As PortalCertificate

            '''<Summary>
            '''Gets or sets the retrieval code. This value MUST be given for the tax operation ElsterDatenabholung and tax data type ElsterVaStDaten, for which a SoftPSE certificate is used to sign.In other cases a null value should be given. It consists of 2 x 5 characters, which are joined by  '-'. Example: 'K6FG5 - RS32P'.
            '''</Summary>
            <ApiMember(Description:="Gets or sets the retrieval code. This value MUST be given for the tax operation ElsterDatenabholung and tax data type ElsterVaStDaten, for which a SoftPSE certificate is used to sign.In other cases a null value should be given. It consists of 2 x 5 characters, which are joined by  '-'. Example: 'K6FG5 - RS32P'.")>
            Public Overridable Property AbrufCode As String
        End Class
    End Namespace
End Namespace

VB.NET SubmitZm2023Async DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .x-msgpack suffix or ?format=x-msgpack

HTTP + X-MSGPACK

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /SubmitZm2023Async HTTP/1.1 
Host: taxfiling.pwc.de 
Accept: application/x-msgpack
Content-Type: application/x-msgpack
Content-Length: length

{"knri":"String","anschrift":{"name":"String","adresszusatz":"String","strasse":"String","hausnr":"String","hausnrzusatz":"String","ort":"String","plz":"String","staat":"String","telefon":"String"},"zmZeilen":{"waehrung":"UNGUELTIG","meldeart":"Nein","anzeige":false,"widerruf":false,"mzr":{"quart":"Q1","jahr":0},"zeilen":[{"umsatzart":"D","knre":"String","betrag":{"wert":0}}]},"datenLieferant":"String","duplexDruck":false,"protocolPrefix":"String","fussText":"String","zertifikat":{"id":"00000000000000000000000000000000","index":0,"pin":"String","description":"String","tags":["String"],"name":"String","content":"AA=="},"abrufCode":"String"}
HTTP/1.1 200 OK
Content-Type: application/x-msgpack
Content-Length: length

{"rueckgabe":{"erfolg":{"telenummer":["String"],"ordnungsbegriffe":["String"]},"transfers":{"transferList":[{"transferTicket":"String"}]},"fehlerRegelpruefungen":[{"nutzdatenticket":"String","feldidentifikator":"String","mehrfachzeilenindex":"String","lfdNrVordruck":"String","vordruckZeilennummer":"String","semantischeIndexes":[{"name":"String","value":"String"}],"untersachbereich":"String","privateKennnummer":"String","regelName":"String","fachlicheFehlerId":"String","text":"String"}],"hinweise":[{"nutzdatenticket":"String","feldidentifikator":"String","mehrfachzeilenindex":"String","lfdNrVordruck":"String","vordruckZeilennummer":"String","semantischeIndexes":[{"name":"String","value":"String"}],"untersachbereich":"String","privateKennnummer":"String","regelName":"String","fachlicheHinweisId":"String","text":"String"}]},"serverantwort":{"transferHeader":{"version":"String","verfahren":"ElsterAnmeldung","datenArt":"34a","vorgang":"send-Auth","transferTicket":"String","testmerker":"0","sigUser":{"inhalt":{}},"empfaenger":{"id":"String","ziel":"BW"},"herstellerID":"String","datenLieferant":"String","eingangsDatum":"\/Date(-62135596800000-0000)\/","datei":{"verschluesselung":"PKCS#7v1.5","kompression":"GZIP","transportSchluessel":"String","erstellung":{"eric":{"inhalt":{}}}},"rc":{"rueckgabe":{"code":"String","text":"String"},"stack":{"code":"String","text":"String"}},"versionClient":"String","zusatz":{"infos":["String"],"elsterInfos":["String"]}},"datenTeil":{"nutzdatenbloecke":[{"nutzdatenHeader":{"version":"String","nutzdatenTicket":"String","empfaenger":{"id":"L","value":"String"},"hersteller":{"produktName":"String","produktVersion":"String"},"datenLieferant":"String","rc":{"rueckgabe":{"code":"String","text":"String"},"stack":{"code":"String","text":"String"}},"zusatz":{"infos":["String"],"elsterInfos":["String"]}},"nutzdaten":{"inhalt":{}}}]}},"transferProtocols":[{"metadata":{"name":"String","fullName":"String","lastAccessTime":"\/Date(-62135596800000-0000)\/","lastAccessTimeUtc":"\/Date(-62135596800000-0000)\/","lastWriteTime":"\/Date(-62135596800000-0000)\/","lastWriteTimeUtc":"\/Date(-62135596800000-0000)\/","length":0,"userId":0,"groupId":0,"othersCanRead":false,"groupCanExecute":false,"groupCanWrite":false,"groupCanRead":false,"ownerCanExecute":false,"ownerCanWrite":false,"ownerCanRead":false,"othersCanExecute":false,"othersCanWrite":false,"extensions":{"String":"String"}},"name":"String","content":"AA=="}],"statusCode":"ERIC_OK","statusText":"String","id":"String","index":0,"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}