' Options:
'Date: 2025-04-07 17:50:22
'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: SubmitUStSv2022AsEntrepreneurAsync.*
'''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.Services.Contracts.Requests
Imports PwC.xEric.Core.Domain.Concretes.Certificates
Imports PwC.xEric.Core.Domain.Concretes.Anmeldungssteuern
Imports PwC.xEric.Core.Domain.Concretes.Models
Imports PwC.xEric.Core.Domain.Concretes.Umsatzsteuer.Anmeldungen
Imports PwC.xEric.Core.Services.Contracts.Umsatzsteuer.Requests
Imports PwC.DigitalHub.Utilities.IO.Core.Concretes.Models
Imports PwC.DigitalHub.Utilities.Domain.IO.Contracts
Imports PwC.xEric.Core.Domain.Contracts.Models
Imports PwC.xEric.Core.Domain.Concretes.Umsatzsteuer.Anmeldungen.Types
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.Anmeldungssteuern

        '''<Summary>
        '''Beim DatenLieferanten handelt es sich um diejenige natürliche Person, welche die Software bedient, bzw. in deren Namen die Software bedient wird,um die Daten zu übersenden (auf den Sendeknopf drückt - NICHT jedoch ein etwaiger Erfüllungsgehilfe).
        '''</Summary>
        <Api(Description:="Beim DatenLieferanten handelt es sich um diejenige natürliche Person, welche die Software bedient, bzw. in deren Namen die Software bedient wird,um die Daten zu übersenden (auf den Sendeknopf drückt - NICHT jedoch ein etwaiger Erfüllungsgehilfe).")>
        Public Partial Class DatenLieferant
            '''<Summary>
            '''Der Name des Datenlieferants.
            '''</Summary>
            <ApiMember(Description:="Der Name des Datenlieferants.")>
            Public Overridable Property Name As String

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

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

            '''<Summary>
            '''Der Ort des Datenlieferants.
            '''</Summary>
            <ApiMember(Description:="Der Ort des Datenlieferants.")>
            Public Overridable Property Ort As String

            '''<Summary>
            '''Die Telefonnummer (optional) des Datenlieferants.
            '''</Summary>
            <ApiMember(Description:="Die Telefonnummer (optional) des Datenlieferants.")>
            Public Overridable Property Telefon As String

            '''<Summary>
            '''Die Email-Adresse (optional) des Datenlieferant.
            '''</Summary>
            <ApiMember(Description:="Die Email-Adresse (optional) des Datenlieferant.")>
            Public Overridable Property Email As String
        End Class

        '''<Summary>
        '''Stellt einen Unternehmer dar.
        '''</Summary>
        <Api(Description:="Stellt einen Unternehmer dar.")>
        Public Partial Class Unternehmer
            '''<Summary>
            '''Der Bezeichnung (optional) des Unternehmers (normalerweise der Name des Unternehmers Unternehmen).
            '''</Summary>
            <ApiMember(Description:="Der Bezeichnung (optional) des Unternehmers (normalerweise der Name des Unternehmers Unternehmen).")>
            Public Overridable Property Bezeichnung As String

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

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

            '''<Summary>
            '''Der Namenvorsatz (optional) des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Der Namenvorsatz (optional) des Unternehmers.")>
            Public Overridable Property Namensvorsatz As String

            '''<Summary>
            '''Der Namenzusatz (optional) des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Der Namenzusatz (optional) des Unternehmers.")>
            Public Overridable Property Namenszusatz As String

            '''<Summary>
            '''Der Straßenname (optional) des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Der Straßenname (optional) des Unternehmers.")>
            Public Overridable Property Str As String

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

            '''<Summary>
            '''Der Hausnummernzusatz (optional) des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Der Hausnummernzusatz (optional) des Unternehmers.")>
            Public Overridable Property HNrZusatz As String

            '''<Summary>
            '''Der Anschriftenzusatz (optional) des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Der Anschriftenzusatz (optional) des Unternehmers.")>
            Public Overridable Property AnschriftenZusatz As String

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

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

            '''<Summary>
            '''Die Auslandspostleitzahl (optional) des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Die Auslandspostleitzahl (optional) des Unternehmers.")>
            Public Overridable Property AuslandsPLZ As String

            '''<Summary>
            '''Der Ländername (falls Anschrift im Ausland) des Unternehmers - optional. Der Ländername des Unternehmers kann mit 1-20 alphanumerischen Zeichen geliefert werden.
            '''</Summary>
            <ApiMember(Description:="Der Ländername (falls Anschrift im Ausland) des Unternehmers - optional. 
Der Ländername des Unternehmers kann mit 1-20 alphanumerischen Zeichen geliefert werden.")>
            Public Overridable Property Land As String

            '''<Summary>
            '''Der Ort des Postfaches (optional) des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Der Ort des Postfaches (optional) des Unternehmers.")>
            Public Overridable Property PostfachOrt As String

            '''<Summary>
            '''Das Postfach (optional) des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Das Postfach (optional) des Unternehmers.")>
            Public Overridable Property Postfach As String

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

            '''<Summary>
            '''Die Großkundenpostleitzahl (optional) des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Die Großkundenpostleitzahl (optional) des Unternehmers.")>
            Public Overridable Property GKPLZ As String

            '''<Summary>
            '''Die Telefonnummer (optional) des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Die Telefonnummer (optional) des Unternehmers.")>
            Public Overridable Property Telefon As String

            '''<Summary>
            '''Die Emailadresse (optional) des Unternehmers.
            '''</Summary>
            <ApiMember(Description:="Die Emailadresse (optional) des Unternehmers.")>
            Public Overridable Property Email As String
        End Class
    End Namespace

    Namespace PwC.xEric.Core.Domain.Concretes.Certificates

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

            '''<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 Implements ISecuredCertificate.Pin

            '''<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) = New List(Of 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>
        '''Stellt eine Anbindung zum ELSTER Online Portal (EOP) dar.
        '''</Summary>
        <Api(Description:="Stellt eine Anbindung zum ELSTER Online Portal (EOP) dar.")>
        Public Partial Class EOP
            Public Overridable Property Transferausgabe As String
        End Class

        '''<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>
        '''Specifies an integer data type with limits and a specialized string representation
        '''</Summary>
        <Api(Description:="Specifies an integer data type with limits and a specialized string representation")>
        Public Partial Class Ganzzahl
            '''<Summary>
            '''The intrinsic integer value.
            '''</Summary>
            <ApiMember(Description:="The intrinsic integer value.")>
            Public Overridable Property Wert As Integer
        End Class

        '''<Summary>
        '''Represents an integer data type whose value has a maximum length of 1 digit. Minus sign allowed.
        '''</Summary>
        <Api(Description:="Represents an integer data type whose value has a maximum length of 1 digit. Minus sign allowed.")>
        Public Partial Class Ganzzahl1EN
            Inherits Ganzzahl
        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.", 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 unsigned amount of money without cents whose value has a maximum length of 13 digits. That is, 1 to 13 digits. Minus sign NOT allowed.
        '''</Summary>
        <Api(Description:="Represents an unsigned amount of money without cents whose value has a maximum length of 13 digits. That is, 1 to 13 digits. Minus sign NOT allowed.")>
        Public Partial Class PositiverGeldBetragOhneCent13EN
            Inherits GrossGeldBetragOhneCent
        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 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.Concretes.Umsatzsteuer.Anmeldungen

        '''<Summary>
        '''Anmeldung der Sondervorauszahlung für die Umsatzsteuer 2022 (Filing of the special advance payment for VAT 2022).
        '''</Summary>
        <Api(Description:="Anmeldung der Sondervorauszahlung für die Umsatzsteuer 2022 (Filing of the special advance payment for VAT 2022).")>
        Public Partial Class Umsatzsteuersondervorauszahlung2022
            '''<Summary>
            '''Das Jahr der Veranlagung.
            '''</Summary>
            <ApiMember(Description:="Das Jahr der Veranlagung.", IsRequired:=true)>
            Public Overridable Property Jahr As Integer

            '''<Summary>
            '''Steuernummer.
            '''</Summary>
            <ApiMember(Description:="Steuernummer.")>
            Public Overridable Property Steuernummer As String

            '''<Summary>
            '''Pflichtkennzahl, welche die Angabe diverser Informationen ermöglicht.
            '''</Summary>
            <ApiMember(Description:="Pflichtkennzahl, welche die Angabe diverser Informationen ermöglicht.", IsRequired:=true)>
            Public Overridable Property Kz09 As Kz09

            '''<Summary>
            '''Berichtigte Anmeldung
            '''</Summary>
            <ApiMember(Description:="Berichtigte Anmeldung")>
            Public Overridable Property Kz10 As Ganzzahl1EN

            '''<Summary>
            '''Über die Angaben in der Steueranmeldung hinaus sind weitere oder abweichende Angaben oder Sachverhalte zu berücksichtigen.
            '''</Summary>
            <ApiMember(Description:="Über die Angaben in der Steueranmeldung hinaus sind weitere oder abweichende Angaben oder Sachverhalte zu berücksichtigen.")>
            Public Overridable Property Kz23 As Ganzzahl1EN

            '''<Summary>
            '''Ergänzende Angaben zur Steueranmeldung
            '''</Summary>
            <ApiMember(Description:="Ergänzende Angaben zur Steueranmeldung")>
            Public Overridable Property Kz23_Begruendung As String

            '''<Summary>
            '''Das SEPA-Lastschriftmandat wird ausnahmsweise (zum Beispiel wegen Verrechnungswünschen) für diesen Voranmeldungszeitraum widerrufen (falls ja, bitte eine 1 eintragen). Ein gegebenenfalls verbleibender Restbetrag ist gesondert zu entrichten.
            '''</Summary>
            <ApiMember(Description:="Das SEPA-Lastschriftmandat wird ausnahmsweise (zum Beispiel wegen Verrechnungswünschen) für diesen Voranmeldungszeitraum widerrufen (falls ja, bitte eine 1 eintragen). Ein gegebenenfalls verbleibender Restbetrag ist gesondert zu entrichten.")>
            Public Overridable Property Kz26 As Ganzzahl1EN

            '''<Summary>
            '''Verrechnung des Erstattungsbetrags erwünscht / Erstattungsbetrag ist abgetreten (falls ja, bitte eine 1 eintragen).
            '''</Summary>
            <ApiMember(Description:="Verrechnung des Erstattungsbetrags erwünscht / Erstattungsbetrag ist abgetreten (falls ja, bitte eine 1 eintragen).")>
            Public Overridable Property Kz29 As Ganzzahl1EN

            '''<Summary>
            '''Summe der verbleibenden Umsatzsteuer-Vorauszahlungen zuzüglich der zu berücksichtigenden Sondervorauszahlung für das Kalenderjahr 2021; davon 1/11 = Sondervorauszahlung 2022.
            '''</Summary>
            <ApiMember(Description:="Summe der verbleibenden Umsatzsteuer-Vorauszahlungen zuzüglich der zu berücksichtigenden Sondervorauszahlung für das Kalenderjahr 2021; davon 1/11 = Sondervorauszahlung 2022.")>
            Public Overridable Property Kz38 As PositiverGeldBetragOhneCent13EN
        End Class
    End Namespace

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

        '''<Summary>
        '''Stellt den Pflichtkennzahl Kz09 dar, welche die Angabe diverser Informationen ermöglicht. Beispiele: 74931 74931*Name Berater*Berufsbezeichnung*** 74931*****Name Mandant 74931***Tel.Nr:Berater/Vorwahl*Tel.Nr:Berater/Anschluss*Name Mandant
        '''</Summary>
        <Api(Description:="Stellt den Pflichtkennzahl Kz09 dar, welche die Angabe diverser Informationen ermöglicht. Beispiele: 74931 74931*Name Berater*Berufsbezeichnung*** 74931*****Name Mandant 74931***Tel.Nr:Berater/Vorwahl*Tel.Nr:Berater/Anschluss*Name Mandant")>
        Public Partial Class Kz09
            '''<Summary>
            '''Die Bezeichnung des Softwareherstellers (Pflicht), über dessen Software die Steuererklärung oder (Vor)anmeldung abgegeben wird. Die Bezeichnung muss 5-stellig sein.
            '''</Summary>
            <ApiMember(Description:="Die Bezeichnung des Softwareherstellers (Pflicht), über dessen Software die Steuererklärung oder (Vor)anmeldung abgegeben wird. Die Bezeichnung muss 5-stellig sein.", IsRequired:=true, Name:="HerstellerId")>
            Public Overridable Property HerstellerId As Integer

            '''<Summary>
            '''Der Name des Beraters, welcher die Steuererklärung oder (Vor)anmeldung abgegeben wird. Das Name des Beraters kann von 0- bis 85-stellig sein.
            '''</Summary>
            <ApiMember(Description:="Der Name des Beraters, welcher die Steuererklärung oder (Vor)anmeldung abgegeben wird. Das Name des Beraters kann von 0- bis 85-stellig sein.", Name:="BeraterName")>
            Public Overridable Property BeraterName As String

            '''<Summary>
            '''Die Berufbezeichnung des Beraters. Die Berufbezeichnung des Beraterskann von 0- bis 85-stellig sein.
            '''</Summary>
            <ApiMember(Description:="Die Berufbezeichnung des Beraters. Die Berufbezeichnung des Beraterskann von 0- bis 85-stellig sein.", Name:="Berufsbezeichnung")>
            Public Overridable Property Berufsbezeichnung As String

            '''<Summary>
            '''Die Telefonnummervorwahl des Beraters. Die Telefonnummervorwahl des Beraters kann von 0- bis 85-stellig sein.
            '''</Summary>
            <ApiMember(Description:="Die Telefonnummervorwahl des Beraters. Die Telefonnummervorwahl des Beraters kann von 0- bis 85-stellig sein.", Name:="Berufsbezeichnung")>
            Public Overridable Property BeraterTelNrVorwahl As String

            '''<Summary>
            '''Der Telefonnummeranschluss des Beraters. Der Telefonnummeranschluss des Beraters kann von 0- bis 85-stellig sein.
            '''</Summary>
            <ApiMember(Description:="Der Telefonnummeranschluss des Beraters. Der Telefonnummeranschluss des Beraters kann von 0- bis 85-stellig sein.", Name:="BeraterTelNrAnschluss")>
            Public Overridable Property BeraterTelNrAnschluss As String

            '''<Summary>
            '''Der Name des Mandanten. Der Name des Mandanten kann von 0- bis 85-stellig sein.
            '''</Summary>
            <ApiMember(Description:="Der Name des Mandanten. Der Name des Mandanten kann von 0- bis 85-stellig sein.", Name:="MandantName")>
            Public Overridable Property MandantName As 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.Domain.Contracts.Models

        Public Interface ISecuredCertificate
            Property Pin As String
        End Interface
    End Namespace

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

        Public Interface IDruckRequest
            Property DuplexDruck As Boolean?
            Property ProtocolPrefix As String
            Property FussText As String
        End Interface

        Public Interface IVeschlueselungsRequest
            Property Zertifikat As PortalCertificate
        End Interface
    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

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

        '''<Summary>
        '''Submits a VAT registration (Umsatzsteueranmeldung) for 2022 and files in the XML content as an Entrepreneur
        '''</Summary>
        <Api(Description:="Submits a VAT registration (Umsatzsteueranmeldung) for 2022 and files in the XML content as an Entrepreneur")>
        Public Partial Class SubmitUmsatzsteueranmeldung2022AsEntrepreneurBase
            Implements IPost
            Implements IDruckRequest
            Implements IVeschlueselungsRequest
            '''<Summary>
            '''Natürliche Person, welche die Software bedient, bzw. in deren Namen die Software bedient wird, um die Daten zu übersenden (Natural person who operates the software or under whose name the software is operated in order to transmit the data).
            '''</Summary>
            <ApiMember(Description:="Natürliche Person, welche die Software bedient, bzw. in deren Namen die Software bedient wird, um die Daten zu übersenden (Natural person who operates the software or under whose name the software is operated in order to transmit the data).")>
            Public Overridable Property DatenLieferant As DatenLieferant

            '''<Summary>
            '''Der natürliche oder jüritische Person, der den Steuerfall bearbeitet und abgibt (The natural or legal person who processes and submits the tax case).
            '''</Summary>
            <ApiMember(Description:="Der natürliche oder jüritische Person, der den Steuerfall bearbeitet und abgibt (The natural or legal person who processes and submits the tax case).")>
            Public Overridable Property Unternehmer As Unternehmer

            '''<Summary>
            '''Das Datum der Erstellung (Date of creation).
            '''</Summary>
            <ApiMember(Description:="Das Datum der Erstellung (Date of creation).")>
            Public Overridable Property Erstellungsdatum As Date

            '''<Summary>
            '''Die vierstellige Bundesfinanzamtsnummer des empfangenden Finanzamtes (The four-digit federal tax office number of the receiving tax office).
            '''</Summary>
            <ApiMember(Description:="Die vierstellige Bundesfinanzamtsnummer des empfangenden Finanzamtes (The four-digit federal tax office number of the receiving tax office).")>
            Public Overridable Property Bundesfinanzamtsnummer As String

            '''<Summary>
            '''Die Anbindung zum ELSTER Online Portal (EOP).
            '''</Summary>
            <ApiMember(Description:="Die Anbindung zum ELSTER Online Portal (EOP).")>
            Public Overridable Property EOP As EOP

            '''<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.")>
            Public Overridable Property DuplexDruck As Boolean? Implements IDruckRequest.DuplexDruck

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

            '''<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 Implements IDruckRequest.FussText

            '''<Summary>
            '''The authentification certificate.
            '''</Summary>
            <ApiMember(Description:="The authentification certificate.")>
            Public Overridable Property Zertifikat As PortalCertificate Implements IVeschlueselungsRequest.Zertifikat
        End Class

        '''<Summary>
        '''An asynchronous service to submit an filing of the special advance payment for VAT (Umsatzsteuer-sondervorauszahlung) as an Entrepreneur for 2022.
        '''</Summary>
        <Route("/SubmitUStSv2022AsEntrepreneurAsync", "POST")>
        <Api(Description:="An asynchronous service to submit an filing of the special advance payment for VAT (Umsatzsteuer-sondervorauszahlung) as an Entrepreneur for 2022.")>
        Public Partial Class SubmitUStSv2022AsEntrepreneurAsync
            Inherits SubmitUStSv2022AsEntrepreneurBase
            Implements IReturn(Of BearbeiteVorgangResponse)
        End Class

        '''<Summary>
        '''Submits the filing of the special advance payment for VAT (Umsatzsteuersondervorauszahlung) as an Entrepreneur for 2022.
        '''</Summary>
        <Api(Description:="Submits the filing of the special advance payment for VAT (Umsatzsteuersondervorauszahlung) as an Entrepreneur for 2022.")>
        Public Partial Class SubmitUStSv2022AsEntrepreneurBase
            Inherits SubmitUmsatzsteueranmeldung2022AsEntrepreneurBase
            '''<Summary>
            '''The filing of the special advance payment for VAT
            '''</Summary>
            <ApiMember(Description:="The filing of the special advance payment for VAT")>
            Public Overridable Property Umsatzsteuersondervorauszahlung As Umsatzsteuersondervorauszahlung2022
        End Class
    End Namespace
End Namespace