| POST | /SubmitUStVa2026AsTaxConsultantAsync | An asynchronous service to submit an preliminary VAT return (Umsatzsteuervoranmeldung) as a tax consultant for 2026 |
|---|
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
Object = TypeVar('Object')
# @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).")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class DatenLieferant:
"""
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).
"""
# @ApiMember(Description="Der Name des Datenlieferants.", IsRequired=true)
name: Optional[str] = None
"""
Der Name des Datenlieferants.
"""
# @ApiMember(Description="Der Straßenname des Datenlieferants.", IsRequired=true)
strasse: Optional[str] = None
"""
Der Straßenname des Datenlieferants.
"""
# @ApiMember(Description="Die Postleitzahl des Datenlieferants.", IsRequired=true)
plz: Optional[str] = None
"""
Die Postleitzahl des Datenlieferants.
"""
# @ApiMember(Description="Der Ort des Datenlieferants.", IsRequired=true)
ort: Optional[str] = None
"""
Der Ort des Datenlieferants.
"""
# @ApiMember(Description="Die Telefonnummer (optional) des Datenlieferants.")
telefon: Optional[str] = None
"""
Die Telefonnummer (optional) des Datenlieferants.
"""
# @ApiMember(Description="Die Email-Adresse (optional) des Datenlieferant.")
email: Optional[str] = None
"""
Die Email-Adresse (optional) des Datenlieferant.
"""
# @Api(Description="Stellt einen Steuerberater dar.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Berater:
"""
Stellt einen Steuerberater dar.
"""
# @ApiMember(Description="Der Bezeichnung (optional) des Beraters (normalerweise der Name des Beraters Unternehmen).")
bezeichnung: Optional[str] = None
"""
Der Bezeichnung (optional) des Beraters (normalerweise der Name des Beraters Unternehmen).
"""
# @ApiMember(Description="Der Name (optional) des Beraters.")
name: Optional[str] = None
"""
Der Name (optional) des Beraters.
"""
# @ApiMember(Description="Der Vorname (optional) des Beraters.")
vorname: Optional[str] = None
"""
Der Vorname (optional) des Beraters.
"""
# @ApiMember(Description="Der Namenvorsatz (optional) des Beraters.")
namensvorsatz: Optional[str] = None
"""
Der Namenvorsatz (optional) des Beraters.
"""
# @ApiMember(Description="Der Namenzusatz (optional) des Beraters.")
namenszusatz: Optional[str] = None
"""
Der Namenzusatz (optional) des Beraters.
"""
# @ApiMember(Description="Der Straßenname (optional) des Beraters.")
str_: Optional[str] = field(metadata=config(field_name='str'), default=None)
"""
Der Straßenname (optional) des Beraters.
"""
# @ApiMember(Description="Die Hausnummer (optional) des Beraters.")
hausnummer: Optional[str] = None
"""
Die Hausnummer (optional) des Beraters.
"""
# @ApiMember(Description="Der Hausnummernzusatz (optional) des Beraters.")
h_nr_zusatz: Optional[str] = None
"""
Der Hausnummernzusatz (optional) des Beraters.
"""
# @ApiMember(Description="Der Anschriftenzusatz (optional) des Beraters.")
anschriften_zusatz: Optional[str] = None
"""
Der Anschriftenzusatz (optional) des Beraters.
"""
# @ApiMember(Description="Der Ort (optional) des Beraters.")
ort: Optional[str] = None
"""
Der Ort (optional) des Beraters.
"""
# @ApiMember(Description="Die Postleitzahl (optional) des Beraters.")
plz: Optional[str] = None
"""
Die Postleitzahl (optional) des Beraters.
"""
# @ApiMember(Description="Die Auslandspostleitzahl (optional) des Beraters.")
auslands_p_l_z: Optional[str] = None
"""
Die Auslandspostleitzahl (optional) des Beraters.
"""
# @ApiMember(Description="Der Ländername (falls Anschrift im Ausland) des Beraters - optional. \nDer Ländername des Beraters kann mit 1-20 alphanumerischen Zeichen geliefert werden.")
land: Optional[str] = None
"""
Der Ländername (falls Anschrift im Ausland) des Beraters - optional. Der Ländername des Beraters kann mit 1-20 alphanumerischen Zeichen geliefert werden.
"""
# @ApiMember(Description="Der Ort des Postfaches (optional) des Beraters.")
postfach_ort: Optional[str] = None
"""
Der Ort des Postfaches (optional) des Beraters.
"""
# @ApiMember(Description="Das Postfach (optional) des Beraters.")
postfach: Optional[str] = None
"""
Das Postfach (optional) des Beraters.
"""
# @ApiMember(Description="Die Postleitzahl (optional) des Beraters.")
postfach_p_l_z: Optional[str] = None
"""
Die Postleitzahl (optional) des Beraters.
"""
# @ApiMember(Description="Die Großkundenpostleitzahl (optional) des Beraters.")
gkplz: Optional[str] = None
"""
Die Großkundenpostleitzahl (optional) des Beraters.
"""
# @ApiMember(Description="Die Telefonnummer (optional) des Beraters.")
telefon: Optional[str] = None
"""
Die Telefonnummer (optional) des Beraters.
"""
# @ApiMember(Description="Die Emailadresse (optional) des Beraters.")
email: Optional[str] = None
"""
Die Emailadresse (optional) des Beraters.
"""
# @Api(Description="Stellt einen Mandant dar.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Mandant:
"""
Stellt einen Mandant dar.
"""
# @ApiMember(Description="Der Name (optional) des Mandanten.")
name: Optional[str] = None
"""
Der Name (optional) des Mandanten.
"""
# @ApiMember(Description="Der Vorname (optional) des Mandanten.")
vorname: Optional[str] = None
"""
Der Vorname (optional) des Mandanten.
"""
# @ApiMember(Description="Die Mandantennummer (optional) des Mandanten.")
mandanten_nr: Optional[str] = None
"""
Die Mandantennummer (optional) des Mandanten.
"""
# @ApiMember(Description="Das Bearbeiterkennzeichen (optional) des Mandanten.")
bearbeiterkennzeichen: Optional[str] = None
"""
Das Bearbeiterkennzeichen (optional) des Mandanten.
"""
# @Api(Description="Stellt eine Anbindung zum ELSTER Online Portal (EOP) dar.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class EOP:
"""
Stellt eine Anbindung zum ELSTER Online Portal (EOP) dar.
"""
transferausgabe: Optional[str] = None
# @Api(Description="Represents a base class for a file with raw data.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class FileBase:
"""
Represents a base class for a file with raw data.
"""
# @ApiMember(Description="The raw data content of the file in bytes.", Name="Content")
content: Optional[bytes] = None
"""
The raw data content of the file in bytes.
"""
# @Api(Description="Represents a portal certificate that is protected by a password.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class PortalCertificate(FileBase, ISecuredCertificate):
"""
Represents a portal certificate that is protected by a password.
"""
# @ApiMember(Description="The file name of the certificate.")
# @StringLength(128)
name: Optional[str] = None
"""
The file name of the certificate.
"""
# @StringLength(255)
# @ApiMember(Description="The password to protect the certificate from unauthorized access.")
pin: Optional[str] = None
"""
The password to protect the certificate from unauthorized access.
"""
# @StringLength(2147483647)
# @ApiMember(Description="The description of the certificate.")
description: Optional[str] = None
"""
The description of the certificate.
"""
# @ApiMember(Description="Tags that can be used to label or identify the certificate.")
tags: List[str] = field(default_factory=list)
"""
Tags that can be used to label or identify the certificate.
"""
# @Api(Description="Submits a VAT registration (Umsatzsteueranmeldung) for 2026 and files in the XML content as a tax consultant.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class SubmitUmsatzsteueranmeldung2026AsTaxConsultantBase(IReturn[BearbeiteVorgangResponse], IPost, IDruckRequest, IVeschlueselungsRequest):
"""
Submits a VAT registration (Umsatzsteueranmeldung) for 2026 and files in the XML content as a tax consultant.
"""
# @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).")
daten_lieferant: Optional[DatenLieferant] = None
"""
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).
"""
# @ApiMember(Description="Das Datum der Erstellung (Date of creation).", IsRequired=true)
erstellungsdatum: datetime.datetime = datetime.datetime(1, 1, 1)
"""
Das Datum der Erstellung (Date of creation).
"""
# @ApiMember(Description="Der Steuerberater, der den Steuerfall bearbeitet und abgibt (The tax adviser who processes and submits the tax case).")
berater: Optional[Berater] = None
"""
Der Steuerberater, der den Steuerfall bearbeitet und abgibt (The tax adviser who processes and submits the tax case).
"""
# @ApiMember(Description="Der Mandant, für den der Steuerfall bearbeitet wird (The client for which the tax case is being processed).")
mandant: Optional[Mandant] = None
"""
Der Mandant, für den der Steuerfall bearbeitet wird (The client for which the tax case is being processed).
"""
# @ApiMember(Description="Die vierstellige Bundesfinanzamtsnummer des empfangenden Finanzamtes (The four-digit federal tax office number of the receiving tax office).")
bundesfinanzamtsnummer: Optional[str] = None
"""
Die vierstellige Bundesfinanzamtsnummer des empfangenden Finanzamtes (The four-digit federal tax office number of the receiving tax office).
"""
# @ApiMember(Description="Die Anbindung zum ELSTER Online Portal (EOP).")
eop: Optional[EOP] = None
"""
Die Anbindung zum ELSTER Online Portal (EOP).
"""
# @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")
duplex_druck: Optional[bool] = None
"""
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.
"""
# @ApiMember(Description="Name prefix of the generated transfer protocol file.")
protocol_prefix: Optional[str] = None
"""
Name prefix of the generated transfer protocol file.
"""
# @ApiMember(Description="Footer text to be used on the printout (optional).")
fuss_text: Optional[str] = None
"""
Footer text to be used on the printout (optional).
"""
# @ApiMember(Description="The authentification certificate.")
zertifikat: Optional[PortalCertificate] = None
"""
The authentification certificate.
"""
@staticmethod
def response_type(): return BearbeiteVorgangResponse
class AnmeldungZeitraum(IntEnum):
"""
Stellt den Zeitraum für eine Anmeldung dar
"""
ZR01 = 1
ZR02 = 2
ZR03 = 3
ZR04 = 4
ZR05 = 5
ZR06 = 6
ZR07 = 7
ZR08 = 8
ZR09 = 9
ZR10 = 10
ZR11 = 11
ZR12 = 12
ZR41 = 41
ZR42 = 42
ZR43 = 43
ZR44 = 44
# @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")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Kz09:
"""
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
"""
# @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")
hersteller_id: int = 0
"""
Die Bezeichnung des Softwareherstellers (Pflicht), über dessen Software die Steuererklärung oder (Vor)anmeldung abgegeben wird. Die Bezeichnung muss 5-stellig sein.
"""
# @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")
berater_name: Optional[str] = None
"""
Der Name des Beraters, welcher die Steuererklärung oder (Vor)anmeldung abgegeben wird. Das Name des Beraters kann von 0- bis 85-stellig sein.
"""
# @ApiMember(Description="Die Berufbezeichnung des Beraters. Die Berufbezeichnung des Beraterskann von 0- bis 85-stellig sein.", Name="Berufsbezeichnung")
berufsbezeichnung: Optional[str] = None
"""
Die Berufbezeichnung des Beraters. Die Berufbezeichnung des Beraterskann von 0- bis 85-stellig sein.
"""
# @ApiMember(Description="Die Telefonnummervorwahl des Beraters. Die Telefonnummervorwahl des Beraters kann von 0- bis 85-stellig sein.", Name="Berufsbezeichnung")
berater_tel_nr_vorwahl: Optional[str] = None
"""
Die Telefonnummervorwahl des Beraters. Die Telefonnummervorwahl des Beraters kann von 0- bis 85-stellig sein.
"""
# @ApiMember(Description="Der Telefonnummeranschluss des Beraters. Der Telefonnummeranschluss des Beraters kann von 0- bis 85-stellig sein.", Name="BeraterTelNrAnschluss")
berater_tel_nr_anschluss: Optional[str] = None
"""
Der Telefonnummeranschluss des Beraters. Der Telefonnummeranschluss des Beraters kann von 0- bis 85-stellig sein.
"""
# @ApiMember(Description="Der Name des Mandanten. Der Name des Mandanten kann von 0- bis 85-stellig sein.", Name="MandantName")
mandant_name: Optional[str] = None
"""
Der Name des Mandanten. Der Name des Mandanten kann von 0- bis 85-stellig sein.
"""
# @Api(Description="Specifies an integer data type with limits and a specialized string representation")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Ganzzahl:
"""
Specifies an integer data type with limits and a specialized string representation
"""
# @ApiMember(Description="The intrinsic integer value.")
wert: int = 0
"""
The intrinsic integer value.
"""
# @Api(Description="Represents an integer data type whose value has a maximum length of 1 digit. Minus sign allowed.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Ganzzahl1EN(Ganzzahl):
"""
Represents an integer data type whose value has a maximum length of 1 digit. Minus sign allowed.
"""
pass
# @Api(Description="Specifies an amount of money without cents with limits and a specialized string representation")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GrossGeldBetragOhneCent:
"""
Specifies an amount of money without cents with limits and a specialized string representation
"""
# @ApiMember(Description="The intrinsic currency value.")
wert: int = 0
"""
The intrinsic currency value.
"""
# @Api(Description="Represents an amount of money without cents whose value has a maximum length of 13 digits. That is, 1 to 13 digits. Minus sign allowed.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GeldBetragOhneCent13EN(GrossGeldBetragOhneCent):
"""
Represents an amount of money without cents whose value has a maximum length of 13 digits. That is, 1 to 13 digits. Minus sign allowed.
"""
pass
class Kz500(IntEnum):
"""
Stellt die Kennzeichen für Kz500 dar (Gründe für ergänzende Angaben zur Steueranmeldung).
"""
NICHT_ERKLAERT = 1
ABWEICHENDE_RECHTSAUFFASSUNG = 2
VERTIEFTE_PRUEFUNG = 3
MEHRFACHAUSWAHL_GRUENDE = 4
# @Api(Description="Specifies an amount of money with cents with limits and a specialized string representation")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GeldBetragMitCent:
"""
Specifies an amount of money with cents with limits and a specialized string representation
"""
# @ApiMember(Description="The intrinsic currency value.")
wert: float = 0.0
"""
The intrinsic currency value.
"""
# @Api(Description="Represents an amount of money with cents whose value has a maximum length of 13 digits. That is, 1 to 11 digits before the decimal separator and 2 digits after the decimal separator. Minus sign allowed.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GeldBetragMitCent11EN(GeldBetragMitCent):
"""
Represents an amount of money with cents whose value has a maximum length of 13 digits. That is, 1 to 11 digits before the decimal separator and 2 digits after the decimal separator. Minus sign allowed.
"""
pass
# @Api(Description="Represents an unsigned amount of money with cents whose value has a maximum length of 13 digits. That is, 1 to 11 digits before the decimal separator and 2 digits after the decimal separator. Minus sign NOT allowed.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class PositiverGeldBetragMitCent11EN(GeldBetragMitCent):
"""
Represents an unsigned amount of money with cents whose value has a maximum length of 13 digits. That is, 1 to 11 digits before the decimal separator and 2 digits after the decimal separator. Minus sign NOT allowed.
"""
pass
# @Api(Description="Represents an unsigned amount of money with cents whose value has a maximum length of 15 digits. That is, 1 to 13 digits before the decimal separator and 2 digits after the decimal separator. Minus sign NOT allowed.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class PositiverGeldBetragMitCent13EN(GeldBetragMitCent):
"""
Represents an unsigned amount of money with cents whose value has a maximum length of 15 digits. That is, 1 to 13 digits before the decimal separator and 2 digits after the decimal separator. Minus sign NOT allowed.
"""
pass
# @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.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class PositiverGeldBetragOhneCent13EN(GrossGeldBetragOhneCent):
"""
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.
"""
pass
# @Api(Description="Umsatzsteuervoranmeldung für 2026 (Preliminary VAT declaration for 2026).")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Umsatzsteuervoranmeldung2026:
"""
Umsatzsteuervoranmeldung für 2026 (Preliminary VAT declaration for 2026).
"""
# @ApiMember(Description="Das Jahr der Veranlagung.", IsRequired=true)
jahr: int = 0
"""
Das Jahr der Veranlagung.
"""
# @ApiMember(Description="Anmeldungszeitraum.", IsRequired=true)
zeitraum: Optional[AnmeldungZeitraum] = None
"""
Anmeldungszeitraum.
"""
# @ApiMember(Description="Steuernummer", IsRequired=true)
steuernummer: Optional[str] = None
"""
Steuernummer
"""
# @ApiMember(Description="Wirtschafts-Identifikationsnummer")
w_id_nr: Optional[str] = None
"""
Wirtschafts-Identifikationsnummer
"""
# @ApiMember(Description="Fünfstellige HerstellerID (Pflichtangabe wenn der zugehörige Kontext angegeben wird).", IsRequired=true)
kz09: Optional[Kz09] = None
"""
Fünfstellige HerstellerID (Pflichtangabe wenn der zugehörige Kontext angegeben wird).
"""
# @ApiMember(Description="Berichtigte Anmeldung")
kz10: Optional[Ganzzahl1EN] = None
"""
Berichtigte Anmeldung
"""
# @ApiMember(Description="Nicht steuerbare sonstige Leistungen gemäß § 18b Satz 1 Nummer 2 UStG")
kz21: Optional[GeldBetragOhneCent13EN] = None
"""
Nicht steuerbare sonstige Leistungen gemäß § 18b Satz 1 Nummer 2 UStG
"""
# @ApiMember(Description="Belege (z.B. Verträge, Rechnungen) werden gesondert eingereicht")
kz22: Optional[Ganzzahl1EN] = None
"""
Belege (z.B. Verträge, Rechnungen) werden gesondert eingereicht
"""
# @ApiMember(Description="Die erforderlichen Massnahmen bei dieser Steueranmeldung")
kz500: Optional[Kz500] = None
"""
Die erforderlichen Massnahmen bei dieser Steueranmeldung
"""
# @ApiMember(Description="Ergänzende Angaben zur Steueranmeldung")
kz500__begruendung: Optional[str] = None
"""
Ergänzende Angaben zur Steueranmeldung
"""
# @ApiMember(Description="Das SEPA-Lastschriftmandat soll ausnahmsweise (z. B. wegen Verrechnungswünschen) für diesen Voranmeldungszeitraum nicht verwendet werden. Ein ggf. verbleibender Restbetrag ist gesondert zu entrichten.")
kz26: Optional[Ganzzahl1EN] = None
"""
Das SEPA-Lastschriftmandat soll ausnahmsweise (z. B. wegen Verrechnungswünschen) für diesen Voranmeldungszeitraum nicht verwendet werden. Ein ggf. verbleibender Restbetrag ist gesondert zu entrichten.
"""
# @ApiMember(Description="Verrechnung des Erstattungsbetrags erwünscht / Erstattungsbetrag ist abgetreten (Teilen Sie bitte die Verrechnungswünsche dem Finanzamt gesondert mit).")
kz29: Optional[Ganzzahl1EN] = None
"""
Verrechnung des Erstattungsbetrags erwünscht / Erstattungsbetrag ist abgetreten (Teilen Sie bitte die Verrechnungswünsche dem Finanzamt gesondert mit).
"""
# @ApiMember(Description="zu anderen Steuersätzen (Bemessungsgrundlage)")
kz35: Optional[GeldBetragOhneCent13EN] = None
"""
zu anderen Steuersätzen (Bemessungsgrundlage)
"""
# @ApiMember(Description="zu anderen Steuersätzen (Steuer)")
kz36: Optional[GeldBetragMitCent11EN] = None
"""
zu anderen Steuersätzen (Steuer)
"""
# @ApiMember(Description="Minderung der abziehbaren Vorsteuerbeträge (in der Zeile 38 aus Rechnungen von anderen Unternehmen (§ 15 Absatz 1 Satz 1 Nummer 1 UStG) sowie in den Zeilen 42 und 43 enthalten)")
kz37: Optional[PositiverGeldBetragMitCent11EN] = None
"""
Minderung der abziehbaren Vorsteuerbeträge (in der Zeile 38 aus Rechnungen von anderen Unternehmen (§ 15 Absatz 1 Satz 1 Nummer 1 UStG) sowie in den Zeilen 42 und 43 enthalten)
"""
# @ApiMember(Description="Abzug der festgesetzten Sondervorauszahlung für Dauerfristverlängerung (in der Regel nur in der letzten Voranmeldung des Besteuerungszeitraums auszufüllen)")
kz39: Optional[PositiverGeldBetragMitCent13EN] = None
"""
Abzug der festgesetzten Sondervorauszahlung für Dauerfristverlängerung (in der Regel nur in der letzten Voranmeldung des Besteuerungszeitraums auszufüllen)
"""
# @ApiMember(Description="Innergemeinschaftliche Lieferungen (§ 4 Nummer 1 Buchstabe b UStG) an Abnehmer mit Umsatzsteuer-Identifikationsnummer")
kz41: Optional[GeldBetragOhneCent13EN] = None
"""
Innergemeinschaftliche Lieferungen (§ 4 Nummer 1 Buchstabe b UStG) an Abnehmer mit Umsatzsteuer-Identifikationsnummer
"""
# @ApiMember(Description="Lieferungen des ersten Abnehmers bei innergemeinschaftlichen Dreiecksgeschäften (§ 25b UStG)")
kz42: Optional[GeldBetragOhneCent13EN] = None
"""
Lieferungen des ersten Abnehmers bei innergemeinschaftlichen Dreiecksgeschäften (§ 25b UStG)
"""
# @ApiMember(Description="Weitere steuerfreie Umsätze mit Vorsteuerabzug (z. B. Ausfuhrlieferungen, Umsätze nach § 4 Nummer 2 bis 7 UStG , Umsätze nach Verordnungen der EU)")
kz43: Optional[GeldBetragOhneCent13EN] = None
"""
Weitere steuerfreie Umsätze mit Vorsteuerabzug (z. B. Ausfuhrlieferungen, Umsätze nach § 4 Nummer 2 bis 7 UStG , Umsätze nach Verordnungen der EU)
"""
# @ApiMember(Description="Innergemeinschaftliche Lieferungen (§ 4 Nummer 1 Buchstabe b UStG) neuer Fahrzeuge an Abnehmer ohne Umsatzsteuer-Identifikationsnummer")
kz44: Optional[GeldBetragOhneCent13EN] = None
"""
Innergemeinschaftliche Lieferungen (§ 4 Nummer 1 Buchstabe b UStG) neuer Fahrzeuge an Abnehmer ohne Umsatzsteuer-Identifikationsnummer
"""
# @ApiMember(Description="Übrige nicht steuerbare Umsätze (Leistungsort nicht im Inland)")
kz45: Optional[GeldBetragOhneCent13EN] = None
"""
Übrige nicht steuerbare Umsätze (Leistungsort nicht im Inland)
"""
# @ApiMember(Description="Sonstige Leistungen nach § 3a Absatz 2 UStG eines im übrigen Gemeinschaftsgebiet ansässigen Unternehmers (§ 13b Absatz 1 UStG) (Bemessungsgrundlage)")
kz46: Optional[GeldBetragOhneCent13EN] = None
"""
Sonstige Leistungen nach § 3a Absatz 2 UStG eines im übrigen Gemeinschaftsgebiet ansässigen Unternehmers (§ 13b Absatz 1 UStG) (Bemessungsgrundlage)
"""
# @ApiMember(Description="Sonstige Leistungen nach § 3a Absatz 2 UStG eines im übrigen Gemeinschaftsgebiet ansässigen Unternehmers (§ 13b Absatz 1 UStG) (Steuer)")
kz47: Optional[GeldBetragMitCent11EN] = None
"""
Sonstige Leistungen nach § 3a Absatz 2 UStG eines im übrigen Gemeinschaftsgebiet ansässigen Unternehmers (§ 13b Absatz 1 UStG) (Steuer)
"""
# @ApiMember(Description="Steuerfreie Umsätze ohne Vorsteuerabzug (zum Beispiel Umsätze nach § 4 Nummer 8 bis 29 oder § 19 Absatz 1 UStG)")
kz48: Optional[GeldBetragOhneCent13EN] = None
"""
Steuerfreie Umsätze ohne Vorsteuerabzug (zum Beispiel Umsätze nach § 4 Nummer 8 bis 29 oder § 19 Absatz 1 UStG)
"""
# @ApiMember(Description="Innergemeinschaftliche Lieferungen (§ 4 Nummer 1 Buchstabe b UStG) neuer Fahrzeuge außerhalb eines Unternehmens (§ 2a UStG)")
kz49: Optional[GeldBetragOhneCent13EN] = None
"""
Innergemeinschaftliche Lieferungen (§ 4 Nummer 1 Buchstabe b UStG) neuer Fahrzeuge außerhalb eines Unternehmens (§ 2a UStG)
"""
# @ApiMember(Description="Minderung der Bemessungsgrundlage (in den Zeilen 13 bis 18 enthalten)")
kz50: Optional[PositiverGeldBetragOhneCent13EN] = None
"""
Minderung der Bemessungsgrundlage (in den Zeilen 13 bis 18 enthalten)
"""
# @ApiMember(Description="Vorsteuerabzug für innergemeinschaftliche Lieferungen neuer Fahrzeuge außerhalb eines Unternehmens (§ 2a UStG) sowie von Kleinunternehmern im Sinne des § 19 Absatz 1 UStG (§ 15 Absatz 4a UStG)")
kz59: Optional[GeldBetragMitCent11EN] = None
"""
Vorsteuerabzug für innergemeinschaftliche Lieferungen neuer Fahrzeuge außerhalb eines Unternehmens (§ 2a UStG) sowie von Kleinunternehmern im Sinne des § 19 Absatz 1 UStG (§ 15 Absatz 4a UStG)
"""
# @ApiMember(Description="Steuerpflichtige Umsätze des leistenden Unternehmers, für die der Leistungsempfänger die Steuer nach § 13b Absatz 5 UStG schuldet")
kz60: Optional[GeldBetragOhneCent13EN] = None
"""
Steuerpflichtige Umsätze des leistenden Unternehmers, für die der Leistungsempfänger die Steuer nach § 13b Absatz 5 UStG schuldet
"""
# @ApiMember(Description="Vorsteuerbeträge aus dem innergemeinschaftlichen Erwerb von Gegenständen (§ 15 Absatz 1 Satz 1 Nummer 3 UStG)")
kz61: Optional[GeldBetragMitCent11EN] = None
"""
Vorsteuerbeträge aus dem innergemeinschaftlichen Erwerb von Gegenständen (§ 15 Absatz 1 Satz 1 Nummer 3 UStG)
"""
# @ApiMember(Description="Entstandene Einfuhrumsatzsteuer (§ 15 Absatz 1 Satz 1 Nummer 2 UStG))")
kz62: Optional[GeldBetragMitCent11EN] = None
"""
Entstandene Einfuhrumsatzsteuer (§ 15 Absatz 1 Satz 1 Nummer 2 UStG))
"""
# @ApiMember(Description="Vorsteuerbeträge, die nach allgemeinen Durchschnittssätzen berechnet sind (§ 23a UStG)")
kz63: Optional[GeldBetragMitCent11EN] = None
"""
Vorsteuerbeträge, die nach allgemeinen Durchschnittssätzen berechnet sind (§ 23a UStG)
"""
# @ApiMember(Description="Berichtigung des Vorsteuerabzugs (§ 15a UStG)")
kz64: Optional[GeldBetragMitCent11EN] = None
"""
Berichtigung des Vorsteuerabzugs (§ 15a UStG)
"""
# @ApiMember(Description="Steuer infolge des Wechsels der Besteuerungsform sowie Nachsteuer auf versteuerte Anzahlungen und ähnlichem wegen Steuersatzänderung")
kz65: Optional[GeldBetragMitCent11EN] = None
"""
Steuer infolge des Wechsels der Besteuerungsform sowie Nachsteuer auf versteuerte Anzahlungen und ähnlichem wegen Steuersatzänderung
"""
# @ApiMember(Description="Vorsteuerbeträge aus Rechnungen von anderen Unternehmern (§ 15 Absatz 1 Satz 1 Nummer 1 UStG), aus Leistungen im Sinne des § 27 Absatz 40a UStG und aus innergemeinschaftlichen Dreiecksgeschäften (§ 25b Absatz 5 UStG)")
kz66: Optional[GeldBetragMitCent11EN] = None
"""
Vorsteuerbeträge aus Rechnungen von anderen Unternehmern (§ 15 Absatz 1 Satz 1 Nummer 1 UStG), aus Leistungen im Sinne des § 27 Absatz 40a UStG und aus innergemeinschaftlichen Dreiecksgeschäften (§ 25b Absatz 5 UStG)
"""
# @ApiMember(Description="Vorsteuerbeträge aus Leistungen im Sinne des § 13b UStG (§ 15 Absatz 1 Satz 1 Nummer 4 UStG)")
kz67: Optional[GeldBetragMitCent11EN] = None
"""
Vorsteuerbeträge aus Leistungen im Sinne des § 13b UStG (§ 15 Absatz 1 Satz 1 Nummer 4 UStG)
"""
# @ApiMember(Description="In Rechnungen unrichtig oder unberechtigt ausgewiesene Steuerbeträge (§ 14c UStG) sowie Steuerbeträge, die nach § 6a Absatz 4 Satz 2, § 17 Absatz 1 Satz 7, § 25b Absatz 2 UStG oder von einem Auslagerer oder Lagerhalter nach § 27 Absatz 40a UStG geschuldet werden.")
kz69: Optional[GeldBetragMitCent11EN] = None
"""
In Rechnungen unrichtig oder unberechtigt ausgewiesene Steuerbeträge (§ 14c UStG) sowie Steuerbeträge, die nach § 6a Absatz 4 Satz 2, § 17 Absatz 1 Satz 7, § 25b Absatz 2 UStG oder von einem Auslagerer oder Lagerhalter nach § 27 Absatz 40a UStG geschuldet werden.
"""
# @ApiMember(Description="Wechsel von der Kleinunternehmer-Regelung (§ 19 UStG) zur Regelbesteuerung. Datum des Wechsels")
kz70: Optional[datetime.datetime] = None
"""
Wechsel von der Kleinunternehmer-Regelung (§ 19 UStG) zur Regelbesteuerung. Datum des Wechsels
"""
# @ApiMember(Description="Umsätze, die unter das GrEStG fallen (§ 13b Absatz 2 Nummer 3 UStG) (Bemessungsgrundlage)")
kz73: Optional[GeldBetragOhneCent13EN] = None
"""
Umsätze, die unter das GrEStG fallen (§ 13b Absatz 2 Nummer 3 UStG) (Bemessungsgrundlage)
"""
# @ApiMember(Description="Umsätze, die unter das GrEStG fallen (§ 13b Absatz 2 Nummer 3 UStG) (Steuer)")
kz74: Optional[GeldBetragMitCent11EN] = None
"""
Umsätze, die unter das GrEStG fallen (§ 13b Absatz 2 Nummer 3 UStG) (Steuer)
"""
# @ApiMember(Description="Umsätze, für die eine Steuer nach § 24 UStG zu entrichten ist (Sägewerkserzeugnisse, Getränke und alkoholische Flüssigkeiten, z. B. Wein) (Bemessungsgrundlage)")
kz76: Optional[GeldBetragOhneCent13EN] = None
"""
Umsätze, für die eine Steuer nach § 24 UStG zu entrichten ist (Sägewerkserzeugnisse, Getränke und alkoholische Flüssigkeiten, z. B. Wein) (Bemessungsgrundlage)
"""
# @ApiMember(Description="Lieferungen land- und forstwirtschaftlicher Betriebe nach § 24 UStG an Abnehmer mit Umsatzsteuer-Identifikationsnummer")
kz77: Optional[GeldBetragOhneCent13EN] = None
"""
Lieferungen land- und forstwirtschaftlicher Betriebe nach § 24 UStG an Abnehmer mit Umsatzsteuer-Identifikationsnummer
"""
# @ApiMember(Description="Umsätze, für die eine Steuer nach § 24 UStG zu entrichten ist (Sägewerkserzeugnisse, Getränke und alkoholische Flüssigkeiten, z. B. Wein) (Steuer)")
kz80: Optional[GeldBetragMitCent11EN] = None
"""
Umsätze, für die eine Steuer nach § 24 UStG zu entrichten ist (Sägewerkserzeugnisse, Getränke und alkoholische Flüssigkeiten, z. B. Wein) (Steuer)
"""
# @ApiMember(Description="zum Steuersatz von 19 Prozent")
kz81: Optional[GeldBetragOhneCent13EN] = None
"""
zum Steuersatz von 19 Prozent
"""
# @ApiMember(Description="Verbleibende Umsatzsteuer-Vorauszahlung beziehungsweise verbleibender Überschuss", IsRequired=true)
kz83: Optional[GeldBetragMitCent11EN] = None
"""
Verbleibende Umsatzsteuer-Vorauszahlung beziehungsweise verbleibender Überschuss
"""
# @ApiMember(Description="Andere Leistungen (§ 13b Absatz 2 Nummer 1, 2, 4 bis 12 UStG) (Bemessungsgrundlage)")
kz84: Optional[GeldBetragOhneCent13EN] = None
"""
Andere Leistungen (§ 13b Absatz 2 Nummer 1, 2, 4 bis 12 UStG) (Bemessungsgrundlage)
"""
# @ApiMember(Description="Andere Leistungen (§ 13b Absatz 2 Nummer 1, 2, 4 bis 12 UStG) (Steuer)")
kz85: Optional[GeldBetragMitCent11EN] = None
"""
Andere Leistungen (§ 13b Absatz 2 Nummer 1, 2, 4 bis 12 UStG) (Steuer)
"""
# @ApiMember(Description="zum Steuersatz von 7 Prozent")
kz86: Optional[GeldBetragOhneCent13EN] = None
"""
zum Steuersatz von 7 Prozent
"""
# @ApiMember(Description="zum Steuersatz von 0 Prozent")
kz87: Optional[GeldBetragOhneCent13EN] = None
"""
zum Steuersatz von 0 Prozent
"""
# @ApiMember(Description="zum Steuersatz von 19 Prozent")
kz89: Optional[GeldBetragOhneCent13EN] = None
"""
zum Steuersatz von 19 Prozent
"""
# @ApiMember(Description="zum Steuersatz von 0 Prozent")
kz90: Optional[GeldBetragOhneCent13EN] = None
"""
zum Steuersatz von 0 Prozent
"""
# @ApiMember(Description="Steuerfreie innergemeinschaftliche Erwerbe von bestimmten Gegenständen und Anlagegold (§§ 4b und 25c UStG)")
kz91: Optional[GeldBetragOhneCent13EN] = None
"""
Steuerfreie innergemeinschaftliche Erwerbe von bestimmten Gegenständen und Anlagegold (§§ 4b und 25c UStG)
"""
# @ApiMember(Description="zum Steuersatz von 7 Prozent")
kz93: Optional[GeldBetragOhneCent13EN] = None
"""
zum Steuersatz von 7 Prozent
"""
# @ApiMember(Description="Erwerbe nach §§ 4b und 25c UStG")
kz94: Optional[GeldBetragOhneCent13EN] = None
"""
Erwerbe nach §§ 4b und 25c UStG
"""
# @ApiMember(Description="zu anderen Steuersätzen (Bemessungsgrundlage)")
kz95: Optional[GeldBetragOhneCent13EN] = None
"""
zu anderen Steuersätzen (Bemessungsgrundlage)
"""
# @ApiMember(Description="neuer Fahrzeuge (§ 1b Absatz 2 und 3 UStG) von Lieferern ohne Umsatzsteuer-Identifikationsnummer zum allgemeinen Steuersatz (Steuer)")
kz96: Optional[GeldBetragMitCent11EN] = None
"""
neuer Fahrzeuge (§ 1b Absatz 2 und 3 UStG) von Lieferern ohne Umsatzsteuer-Identifikationsnummer zum allgemeinen Steuersatz (Steuer)
"""
# @ApiMember(Description="zu anderen Steuersätzen (Steuer)")
kz98: Optional[GeldBetragMitCent11EN] = None
"""
zu anderen Steuersätzen (Steuer)
"""
# @Api(Description="Submits the preliminary VAT return (Umsatzsteuervoranmeldung) as a tax consultant for 2026.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class SubmitUStVa2026AsTaxConsultantBase(SubmitUmsatzsteueranmeldung2026AsTaxConsultantBase):
"""
Submits the preliminary VAT return (Umsatzsteuervoranmeldung) as a tax consultant for 2026.
"""
# @ApiMember(Description="Die Umsatzsteuervoranmeldung (The preliminary VAT return).")
umsatzsteuervoranmeldung: Optional[Umsatzsteuervoranmeldung2026] = None
"""
Die Umsatzsteuervoranmeldung (The preliminary VAT return).
"""
# @Api(Description="Specifies a service response from an ERiC service operation.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class ServiceReponseBase(IHasIndex):
"""
Specifies a service response from an ERiC service operation.
"""
# @ApiMember(Description="The unique identifier of the response.")
id: Optional[str] = None
"""
The unique identifier of the response.
"""
# @ApiMember(Description="The position of the response element in an indexed collection.")
index: int = 0
"""
The position of the response element in an indexed collection.
"""
# @ApiMember(Description="Metadata that contains structured error information on the service response.")
response_status: Optional[ResponseStatus] = None
"""
Metadata that contains structured error information on the service response.
"""
class EricFehlerCode(IntEnum):
"""
Enumeration of ERiC API error codes.
"""
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_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_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_ESIGNER_NICHT_GELADEN = 610201140
ERIC_CRYPT_E_INKOMPATIBLE_ESIGNER_VERSION = 610201141
ERIC_CRYPT_E_VERALTETE_ESIGNER_VERSION = 610201142
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_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_CRYPT_E_DATA_NOT_INITIALIZED = 610201228
ERIC_CRYPT_E_ASN1_READ_BUFFER_TOO_SMALL = 610201229
ERIC_CRYPT_E_ASN1_READ_DATA_INCOMPLETE = 610201230
ERIC_CRYPT_E_ASN1_NO_ENVELOPED_DATA = 610201231
ERIC_CRYPT_E_ASN1_NO_CONTENT_DATA = 610201232
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_RABE_FEHLER = 610301170
ERIC_IO_READER_KEINE_RABEID = 610301171
ERIC_IO_READER_RABEID_UNGUELTIG = 610301172
ERIC_IO_READER_RABE_VERIFIKATIONSID_UNGUELTIG = 610301173
ERIC_IO_READER_RABE_REFERENZID_UNGUELTIG = 610301174
ERIC_IO_READER_RABE_REFERENZID_NICHT_ERLAUBT = 610301175
ERIC_IO_READER_RABE_REFERENZIDS_NICHT_EINDEUTIG = 610301176
ERIC_IO_READER_ZU_VIELE_ANHAENGE = 610301190
ERIC_IO_READER_ANHANG_ZU_GROSS = 610301191
ERIC_IO_READER_ANHAENGE_ZU_GROSS = 610301192
ERIC_IO_READER_ANHANG_ZU_KLEIN = 610301193
ERIC_IO_READER_SCHEMA_VALIDIERUNGSFEHLER = 610301200
ERIC_IO_READER_UNBEKANNTE_XML_ENTITY = 610301201
ERIC_IO_TESTHERSTELLERID_GESPERRT = 610301202
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
ERIC_PRINT_PDFCALLBACK = 610501015
# @Api(Description="Represent a base response that encapsulate any ERiC API function return value.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class EricFehlerCodeResponse(ServiceReponseBase):
"""
Represent a base response that encapsulate any ERiC API function return value.
"""
# @ApiMember(Description="The status code that the ERiC API function returns.")
status_code: Optional[EricFehlerCode] = None
"""
The status code that the ERiC API function returns.
"""
# @ApiMember(Description="The status message that the ERiC API function returns.")
status_text: Optional[str] = None
"""
The status message that the ERiC API function returns.
"""
# @Api(Description="Represents information returned from a successful tax declaration process.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Erfolg:
"""
Represents information returned from a successful tax declaration process.
"""
# @ApiMember(Description="The generated tele-number for the successful tax declaration process.")
telenummer: List[str] = field(default_factory=list)
"""
The generated tele-number for the successful tax declaration process.
"""
# @ApiMember(Description="The classification key for the successful tax declaration process.")
ordnungsbegriffe: List[str] = field(default_factory=list)
"""
The classification key for the successful tax declaration process.
"""
# @Api(Description="Represents information on the delivery.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Transfer:
"""
Represents information on the delivery.
"""
# @ApiMember(Description="The ticket of the transfer.")
transfer_ticket: Optional[str] = None
"""
The ticket of the transfer.
"""
# @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.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Transfers:
"""
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.
"""
# @ApiMember(Description="Contains information on all data deliveries, including deliveries that have not been confirmed by the server.")
transfer_list: List[Transfer] = field(default_factory=list)
"""
Contains information on all data deliveries, including deliveries that have not been confirmed by the server.
"""
# @Api(Description="Represents value of an index field, which identfies the context about an error message.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class SemantischerIndex:
"""
Represents value of an index field, which identfies the context about an error message.
"""
# @ApiMember(Description="The name of the index field.")
name: Optional[str] = None
"""
The name of the index field.
"""
# @ApiMember(Description="The value of the index field.")
value: Optional[str] = None
"""
The value of the index field.
"""
# @Api(Description="Represents information on an ERiC reference.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class FehlerRegelpruefung:
"""
Represents information on an ERiC reference.
"""
# @ApiMember(Description="The user data ticket of the reference.")
nutzdatenticket: Optional[str] = None
"""
The user data ticket of the reference.
"""
# @ApiMember(Description="The field identifier of the reference.")
feldidentifikator: Optional[str] = None
"""
The field identifier of the reference.
"""
# @ApiMember(Description="The multi-line index of the reference.")
mehrfachzeilenindex: Optional[str] = None
"""
The multi-line index of the reference.
"""
# @ApiMember(Description="The delivery number form of the reference.")
lfd_nr_vordruck: Optional[str] = None
"""
The delivery number form of the reference.
"""
# @ApiMember(Description="Indicates the line number of the error field mentioned in the form.")
vordruck_zeilennummer: Optional[str] = None
"""
Indicates the line number of the error field mentioned in the form.
"""
# @ApiMember(Description="Specifies the value of one or more index fields that identify the context of error messages.")
semantische_indexes: List[SemantischerIndex] = field(default_factory=list)
"""
Specifies the value of one or more index fields that identify the context of error messages.
"""
# @ApiMember(Description="The sub-subject-area of the reference.")
untersachbereich: Optional[str] = None
"""
The sub-subject-area of the reference.
"""
# @ApiMember(Description="The private identification number of the reference.")
private_kennnummer: Optional[str] = None
"""
The private identification number of the reference.
"""
# @ApiMember(Description="The name of the rule that applies to the reference.")
regel_name: Optional[str] = None
"""
The name of the rule that applies to the reference.
"""
# @ApiMember(Description="The technical error identifier of the reference.")
fachliche_fehler_id: Optional[str] = None
"""
The technical error identifier of the reference.
"""
# @ApiMember(Description="The textual details of the reference.")
text: Optional[str] = None
"""
The textual details of the reference.
"""
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Hinweis:
# @ApiMember(Description="The user data ticket of the reference.")
nutzdatenticket: Optional[str] = None
"""
The user data ticket of the reference.
"""
# @ApiMember(Description="The field identifier of the reference.")
feldidentifikator: Optional[str] = None
"""
The field identifier of the reference.
"""
# @ApiMember(Description="The multi-line index of the reference.")
mehrfachzeilenindex: Optional[str] = None
"""
The multi-line index of the reference.
"""
# @ApiMember(Description="The delivery number form of the reference.")
lfd_nr_vordruck: Optional[str] = None
"""
The delivery number form of the reference.
"""
# @ApiMember(Description="Indicates the line number of the error field mentioned in the form.")
vordruck_zeilennummer: Optional[str] = None
"""
Indicates the line number of the error field mentioned in the form.
"""
# @ApiMember(Description="Specifies the value of one or more index fields that identify the context of error messages.")
semantische_indexes: List[SemantischerIndex] = field(default_factory=list)
"""
Specifies the value of one or more index fields that identify the context of error messages.
"""
# @ApiMember(Description="The sub-subject-area of the reference.")
untersachbereich: Optional[str] = None
"""
The sub-subject-area of the reference.
"""
# @ApiMember(Description="The private identification number of the reference.")
private_kennnummer: Optional[str] = None
"""
The private identification number of the reference.
"""
# @ApiMember(Description="The name of the rule that applies to the reference.")
regel_name: Optional[str] = None
"""
The name of the rule that applies to the reference.
"""
# @ApiMember(Description="The technical note identifier of the reference.")
fachliche_hinweis_id: Optional[str] = None
"""
The technical note identifier of the reference.
"""
# @ApiMember(Description="The textual details of the reference.")
text: Optional[str] = None
"""
The textual details of the reference.
"""
# @Api(Description="Represents a structure that contains the first output of the ERiC tax data submission process.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class EricBearbeiteVorgang:
"""
Represents a structure that contains the first output of the ERiC tax data submission process.
"""
# @ApiMember(Description="Information from the successful processing a tax declaration.")
erfolg: Optional[Erfolg] = None
"""
Information from the successful processing a tax declaration.
"""
# @ApiMember(Description="Gets or sets information on all data deliveries, including deliveries that have not been confirmed by the server.")
transfers: Optional[Transfers] = None
"""
Gets or sets information on all data deliveries, including deliveries that have not been confirmed by the server.
"""
# @ApiMember(Description="Error rules that result from the processing of a tax declaration.")
fehler_regelpruefungen: List[FehlerRegelpruefung] = field(default_factory=list)
"""
Error rules that result from the processing of a tax declaration.
"""
# @ApiMember(Description="Hints that result the processing of a tax declaration.")
hinweise: List[Hinweis] = field(default_factory=list)
"""
Hints that result the processing of a tax declaration.
"""
class Verfahren(str, Enum):
"""
Enumeration of valid procedures
"""
ELSTER_ANMELDUNG = 'ElsterAnmeldung'
ELSTER_BEREITSTELLUNG = 'ElsterBereitstellung'
ELSTER_BILANZ = 'ElsterBilanz'
ELSTER_B_R_M = 'ElsterBRM'
ELSTER_B_R_M_ORG = 'ElsterBRMOrg'
ELSTER_DATENABHOLUNG = 'ElsterDatenabholung'
ELSTER_ERKLAERUNG = 'ElsterErklaerung'
ELSTER_EXTERN = 'ElsterExtern'
ELSTER_F_S_E = 'ElsterFSE'
ELSTER_KAP_E_ST = 'ElsterKapESt'
ELSTER_K_M_V = 'ElsterKMV'
ELSTER_KONTOABFRAGE = 'ElsterKontoabfrage'
ELSTER_LAVENDEL = 'ElsterLavendel'
ELSTER_LOHN = 'ElsterLohn'
ELSTER_LOHN2 = 'ElsterLohn2'
ELSTER_NACHRICHT = 'ElsterNachricht'
ELSTER_SIGNATUR = 'ElsterSignatur'
ELSTER_VOLLMACHT_D_B = 'ElsterVollmachtDB'
class Datenart(str, Enum):
"""
Enumeration of all valid data types.
"""
ABRUFCODE_ANTRAG = 'AbrufcodeAntrag'
ABRUFCODE_STORNO = 'AbrufcodeStorno'
ABRUFVOLLMACHT_ANLAGE = 'AbrufvollmachtAnlage'
ABRUFVOLLMACHT_UPDATE = 'AbrufvollmachtUpdate'
AENDERUNG_ADRESSE = 'AenderungAdresse'
AENDERUNG_BANKVERBINDUNG = 'AenderungBankverbindung'
ANLAGE34A = 'Anlage34a'
ANPASSUNG_VORAUSZAHLUNG = 'AnpassungVorauszahlung'
ANTRAEGE_RECHTE_LOESCHEN = 'AntraegeRechteLoeschen'
ANTRAEGE_UND_RECHTE = 'AntraegeUndRechte'
ANTR_ANSAESSIGKEIT_BESCH = 'AntrAnsaessigkeitBesch'
ANTRAG_U_ST_VERGUETUNG4A = 'AntragUStVerguetung4a'
A_ST_G_H_Z_B = 'AStGHZB'
AUFZEICHNUNG146A = 'Aufzeichnung146a'
BAULEISTUNG_ST_AB_ANMELDUNG = 'BauleistungStAbAnmeldung'
BAULEISTUNG_ST_AB_ERSTATTUNG = 'BauleistungStAbErstattung'
BELEGNACHREICHUNG = 'Belegnachreichung'
BET_P_G = 'BetPG'
BILANZ = 'Bilanz'
BSB_MITTEILUNG = 'BSBMitteilung'
BZ_ST2 = 'BZSt2'
C19_MITTEILUNG = 'C19Mitteilung'
DIVA_DATEN_B_Z_ST = 'DIVADatenBZSt'
DIVA_ERGEBNISLISTE = 'DivaErgebnisliste'
DIVA_EINWILLIGUNG_ANLAGE_B_R_M = 'DivaEinwilligungAnlageBRM'
DIVA_EINWILLIGUNG_FREISCH = 'DivaEinwilligungFreisch'
DIVA_EINWILLIGUNG_UPDATE_B_R_M = 'DivaEinwilligungUpdateBRM'
DIVA_WIDERRUF_B_R_M = 'DivaWiderrufBRM'
D_UE_ABMELDEN = 'DUeAbmelden'
D_UE_ANMELDEN = 'DUeAnmelden'
D_UE_UMMELDEN = 'DUeUmmelden'
EINSPRUCH = 'Einspruch'
EINSPRUCH_NACHTRAG = 'EinspruchNachtrag'
EINSPRUCH_RUECKNAHME = 'EinspruchRuecknahme'
E_LE_V_ANTRAG_E_L_ST_A_M = 'ELeVAntragELStAM'
E_LE_V_ERMAESSIGUNG = 'ELeVErmaessigung'
E_LE_V_GETRENNTLEBEND = 'ELeVGetrenntlebend'
E_LE_V_STEUERKLASSENWECHSEL = 'ELeVSteuerklassenwechsel'
E_LE_V_WIEDERAUFNAHME_EHE = 'ELeVWiederaufnahmeEhe'
ELSTER_D_I_V_A_DATEN = 'ElsterDIVADaten'
ELSTER_D_I_V_DATEN = 'ElsterDIVDaten'
ELSTER_E_P_BESCHEID_DATEN = 'ElsterEPBescheidDaten'
ELSTER_E_P_MITTEILUNG_DATEN = 'ElsterEPMitteilungDaten'
ELSTER_ERKLAERUNG_DATEN = 'ElsterErklaerungDaten'
ELSTER_K_M_V_DATEN = 'ElsterKMVDaten'
ELSTER_LOHN_DATEN = 'ElsterLohnDaten'
ELSTER_LOHN2_DATEN = 'ElsterLohn2Daten'
ELSTER_VA_ST_DATEN = 'ElsterVaStDaten'
ELSTER_VOLLMACHT_DATEN = 'ElsterVollmachtDaten'
EP_ANTWORT = 'EPAntwort'
EP_BESCHEID = 'EPBescheid'
EP_KURZMITTEILUNG = 'EPKurzmitteilung'
EP_MITTEILUNG = 'EPMitteilung'
EP_ST_BESCHEID_ABHOLUNG = 'EPStBescheidAbholung'
EP_ST_MITTEILUNG_ABHOLUNG = 'EPStMitteilungAbholung'
ERBSCHAFTSTEUER = 'Erbschaftsteuer'
E_ST = 'ESt'
E_STBESCHRAENKT = 'EStbeschraenkt'
EUER = 'EUER'
E_UN = 'EUn'
FEIN = 'FEIN'
FLH_MITTEILUNG = 'FLHMitteilung'
FZL_MITTEILUNG = 'FZLMitteilung'
FORSCHUNG_ZUL_ANTRAG = 'ForschungZulAntrag'
FREISTELLUNG_KAPITALERTRAEGE_B_V = 'FreistellungKapitalertraegeBV'
FRISTVERLAENGERUNG = 'Fristverlaengerung'
FS_E_VEREIN = 'FsEVerein'
GDB_MITTEILUNG = 'GDBMitteilung'
GEWERBEMELDUNG = 'Gewerbemeldung'
GEWINNERMITTLUNG13A_E_ST_G = 'Gewinnermittlung13aEStG'
GEW_ST = 'GewSt'
GEW_ST_Z = 'GewStZ'
GRUNDSTEUER_AEND_A_Z = 'GrundsteuerAendAZ'
GRUNDSTEUER_AEND_A_Z_B_W = 'GrundsteuerAendAZBW'
GRUNDSTEUER_AEND_A_Z_B_Y = 'GrundsteuerAendAZBY'
GRUNDSTEUER_AEND_A_Z_H_E = 'GrundsteuerAendAZHE'
GRUNDSTEUER_AEND_A_Z_H_H = 'GrundsteuerAendAZHH'
GRUNDSTEUER_AEND_A_Z_N_I = 'GrundsteuerAendAZNI'
GRUNDSTEUER_B_W = 'GrundsteuerBW'
GRUNDSTEUER_B_Y = 'GrundsteuerBY'
GRUNDSTEUER_H_E = 'GrundsteuerHE'
GRUNDSTEUER_H_H = 'GrundsteuerHH'
GRUNDSTEUER_N_I = 'GrundsteuerNI'
GRUNDSTEUERWERT = 'Grundsteuerwert'
IBAN_MELDUNG = 'IBANMeldung'
INV_ST_G51_FESTSTELLUNG = 'InvStG51Feststellung'
INV_ST_G56_ABS5 = 'InvStG56Abs5'
KAP_G = 'KapG'
KAP_G_AUS = 'KapGAus'
KAP_E_ST_A = 'KapEStA'
KAP_E_ST_INV_ST_G = 'KapEStInvStG'
KKV_MITTEILUNG = 'KKVMitteilung'
KONTOABFRAGE = 'Kontoabfrage'
KONTOINFORMATION = 'Kontoinformation'
K_ST = 'KSt'
K_ST_ANTRAG_EINLAGENRUECK = 'KStAntragEinlagenrueck'
K_ST_ANTRAG_OPTION_PERS_G = 'KStAntragOptionPersG'
K_ST_Z = 'KStZ'
K_ST_ZERLEGUNG_V_Z = 'KStZerlegungVZ'
KTT_ANMELDUNG_H_H = 'KTTAnmeldungHH'
KTT_ANZEIGE_H_H = 'KTTAnzeigeHH'
LOHNERSATZLEISTUNG = 'Lohnersatzleistung'
LOHNERSATZ_MITTEILUNG = 'LohnersatzMitteilung'
L_ST_A = 'LStA'
L_ST_B = 'LStB'
L_ST_H_V_DIVA_ADRESSE_B_R_M = 'LStHVDivaAdresseBRM'
L_ST_H_V_V_M_ANLAGE = 'LStHVVMAnlage'
L_ST_H_V_V_M_UPDATE = 'LStHVVMUpdate'
LST_MITTEILUNG = 'LSTMitteilung'
MINDEST_ST_UNTERNEHMEN_E_U = 'MindestStUnternehmenEU'
MITTEILUNG_ABHOLUNG = 'MitteilungAbholung'
MVO_MITTEILUNG = 'MVOMitteilung'
MVZ_MITTEILUNG = 'MVZMitteilung'
NEK_MITTEILUNG = 'NEKMitteilung'
OGH_MITTEILUNG = 'OGHMitteilung'
PERS_G = 'PersG'
POSTFACH_ANFRAGE = 'PostfachAnfrage'
POSTFACH_BESTAETIGUNG = 'PostfachBestaetigung'
POSTFACH_STATUS = 'PostfachStatus'
PROTOKOLL_ANFORDERUNG = 'ProtokollAnforderung'
RABE_EXT_DATENHALTUNG_CHECK = 'RabeExtDatenhaltungCheck'
RABE_EXT_DATENHALTUNG_PFLEGE = 'RabeExtDatenhaltungPflege'
REGISTRIERUNG = 'Registrierung'
SCHENKUNGSTEUER = 'Schenkungsteuer'
SONSTIGE_NACHRICHTEN = 'SonstigeNachrichten'
SPEZ_RECHT_ANTRAG = 'SpezRechtAntrag'
SPEZ_RECHT_FREISCHALTUNG = 'SpezRechtFreischaltung'
SPEZ_RECHT_LISTE = 'SpezRechtListe'
SPEZ_RECHT_STORNO = 'SpezRechtStorno'
SPEZ_RECHT_TEILNAHME = 'SpezRechtTeilnahme'
ST_AB_S50A = 'StAbS50a'
STATUSABFRAGE = 'Statusabfrage'
STUNDUNG_ANTRAG = 'StundungAntrag'
UENST_ANMELDUNG_B_E = 'UENSTAnmeldungBE'
UENST_ANZEIGE_B_E = 'UENSTAnzeigeBE'
UNENTGELTLICHE_DEPOTUEBERTRAGUNG = 'UnentgeltlicheDepotuebertragung'
U_ST = 'USt'
U_ST_A_KFZ_EINZEL = 'UStAKfzEinzel'
U_ST_D_V = 'UStDV'
U_ST_S_V = 'UStSV'
U_ST_V_A = 'UStVA'
VAG_MITTEILUNG = 'VAGMitteilung'
VERMOEGENSWIRKSAME_LEISTUNG = 'VermoegenswirksameLeistung'
VGN_ANMELDUNG_B_E = 'VGNAnmeldungBE'
VGN_ANMELDUNG_H_B = 'VGNAnmeldungHB'
VGN_ANMELDUNG_H_H = 'VGNAnmeldungHH'
VGN_ANZEIGE_B_E = 'VGNAnzeigeBE'
VGN_ANZEIGE_H_H = 'VGNAnzeigeHH'
VM_ERGEBNIS_LISTE_V_N_SICHT = 'VMErgebnisListeVNSicht'
V_MO_V_M_V_FREISCHALTUNG = 'VMoVMVFreischaltung'
V_MO_V_M_V_ST_B_ANLAGE = 'VMoVMVStBAnlage'
V_MO_V_M_V_ST_B_UPDATE = 'VMoVMVStBUpdate'
VM_WIDERRUF = 'VMWiderruf'
V_NO_V_M_V_LOESCHUNG = 'VNoVMVLoeschung'
V_NO_V_M_V_REGISTRIERUNG = 'VNoVMVRegistrierung'
V_NO_V_M_V_UPDATE = 'VNoVMVUpdate'
VOLLF_A_ANLAGE = 'VollfAAnlage'
VOLLF_A_UPDATE = 'VollfAUpdate'
VOLLMACHT_DETAILS = 'VollmachtDetails'
WTB_ANMELDUNG_H_B = 'WTBAnmeldungHB'
ZMDO = 'ZMDO'
ZUWENDUNGSBESTAETIGUNG = 'Zuwendungsbestaetigung'
class Vorgang(str, Enum):
"""
Main information whether the data was authenticated (send-Auth) or not (send-NoSig)
"""
SEND_AUTH = 'Send_Auth'
SEND_AUTH_PART = 'Send_Auth_Part'
SEND_NOSIG = 'Send_NoSig'
class Testmerker(IntEnum):
"""
Marking of the data delivery whether it is a test case, applies to the entire data delivery. A real case does not contain this element. A test case must be marked with a test marker so that it is not processed like a real case. If the data was only sent for testing the frontend, it does not need to be processed further.
"""
TM010000001 = 10000001
TM080000001 = 80000001
TM160000001 = 160000001
TM160000002 = 160000002
TM220000000 = 220000000
TM220002000 = 220002000
TM230000001 = 230000001
TM240000000 = 240000000
TM370000001 = 370000001
TM520000000 = 520000000
TM700000001 = 700000001
TM700000004 = 700000004
# @Api(Description="Represents the signature and associated information of the compressed, encrypted, base64-encoded content of the data part of the tax declaration/statement.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class SigUser:
"""
Represents the signature and associated information of the compressed, encrypted, base64-encoded content of the data part of the tax declaration/statement.
"""
# @ApiMember(Description="The content of the data. Currently supported: Raw XML (text), XElement or IXmlSerializable")
inhalt: Optional[Object] = None
"""
The content of the data. Currently supported: Raw XML (text), XElement or IXmlSerializable
"""
class Bundesland(str, Enum):
"""
Uniform abbreviations for the federal states or alternative recipients
"""
BW = 'BW'
BY = 'BY'
BE = 'BE'
BB = 'BB'
HB = 'HB'
HH = 'HH'
HE = 'HE'
MV = 'MV'
NI = 'NI'
NW = 'NW'
RP = 'RP'
SL = 'SL'
SN = 'SN'
ST = 'ST'
SH = 'SH'
TH = 'TH'
EC = 'EC'
BF = 'BF'
CS = 'CS'
CD = 'CD'
CM = 'CM'
CN = 'CN'
DS = 'DS'
OP = 'OP'
TK = 'TK'
ZF = 'ZF'
# @Api(Description="Represents a receiver of tax data.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Empfaenger:
"""
Represents a receiver of tax data.
"""
# @ApiMember(Description="The identifier of the receiver.", IsRequired=true)
id: Optional[str] = None
"""
The identifier of the receiver.
"""
# @ApiMember(Description="The destination of the receiver.", IsRequired=true)
ziel: Optional[Bundesland] = None
"""
The destination of the receiver.
"""
class Verschluesselungsart(str, Enum):
"""
Encryption protocol. Different encryption types may be used, a distinction is necessary here to control the correct decryption tool. With which encryption type were the contents of the elements 'DatenLieferant' and possibly 'SigUser' in the TransferHeader and the element 'DatenTeil' encrypted
"""
PKCS_7V1_5 = 'PKCS_7v1_5'
PKCS_7V1_5ENVELOPED = 'PKCS_7v1_5enveloped'
NO_BASE64 = 'NO_BASE64'
CMS_ENCRYPTED_DATA = 'CMSEncryptedData'
CMS_ENVELOPED_DATA = 'CMSEnvelopedData'
ENVELOPEDDATA__RSA_OAEP__AES_128__GZIP__B64 = 'EnvelopedData__RSA_OAEP__AES_128__GZip__B64'
class Kompression(str, Enum):
"""
With which compression the contents of the elements 'DatenLieferant' and possibly 'SigUser' in the TransferHeader and the element DatenTeil were compressed.
"""
GZIP = 'GZIP'
NO_BASE64 = 'NO_BASE64'
# @Api(Description="[Documentation unavailable]")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class EricTyp:
"""
[Documentation unavailable]
"""
# @ApiMember(Description="The content of the data. Currently supported: Raw XML (text), XmlElement, XElement or IXmlSerializable")
inhalt: Optional[Object] = None
"""
The content of the data. Currently supported: Raw XML (text), XmlElement, XElement or IXmlSerializable
"""
# @Api(Description="[Documentation unavailable]")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Erstellung:
"""
[Documentation unavailable]
"""
# @ApiMember(Description="[Documentation unavailable]")
eric: Optional[EricTyp] = None
"""
[Documentation unavailable]
"""
# @Api(Description="Represents information on the encryption of tax data.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Datei:
"""
Represents information on the encryption of tax data.
"""
# @ApiMember(Description="The type of data encryption used.")
verschluesselung: Optional[Verschluesselungsart] = None
"""
The type of data encryption used.
"""
# @ApiMember(Description="The type of data compression used.")
kompression: Optional[Kompression] = None
"""
The type of data compression used.
"""
# @ApiMember(Description="The transport key used in the encryption.")
transport_schluessel: Optional[str] = None
"""
The transport key used in the encryption.
"""
# @ApiMember(Description="[Documentation unavailable]")
erstellung: Optional[Erstellung] = None
"""
[Documentation unavailable]
"""
# @Api(Description="Represents an external error stack.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Rueckgabe:
"""
Represents an external error stack.
"""
# @ApiMember(Description="The external error code. Either a zero (0) if no external errors occurred; otherwise an error number.")
code: Optional[str] = None
"""
The external error code. Either a zero (0) if no external errors occurred; otherwise an error number.
"""
# @ApiMember(Description="The external error message.")
text: Optional[str] = None
"""
The external error message.
"""
# @Api(Description="Represents an internal error stack.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Stack:
"""
Represents an internal error stack.
"""
# @ApiMember(Description="The internal error code. Either a zero (0) if no internal errors occurred; otherwise an error number.")
code: Optional[str] = None
"""
The internal error code. Either a zero (0) if no internal errors occurred; otherwise an error number.
"""
# @ApiMember(Description="The external error message.")
text: Optional[str] = None
"""
The external error message.
"""
# @Api(Description="Represents an ERiC return code.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class RC:
"""
Represents an ERiC return code.
"""
# @ApiMember(Description="The return value of the return code.")
rueckgabe: Optional[Rueckgabe] = None
"""
The return value of the return code.
"""
# @ApiMember(Description="The internal value of the return code.")
stack: Optional[Stack] = None
"""
The internal value of the return code.
"""
# @Api(Description="Represents an ERiC extension.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Zusatz:
"""
Represents an ERiC extension.
"""
# @ApiMember(Description="The user-customizable items for the extension. Data providers can use these items for their own extensions/information.")
infos: List[str] = field(default_factory=list)
"""
The user-customizable items for the extension. Data providers can use these items for their own extensions/information.
"""
# @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).")
elster_infos: List[str] = field(default_factory=list)
"""
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).
"""
# @Api(Description="Represents the transfer header part of an ELSTER document.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class TransferHeader:
"""
Represents the transfer header part of an ELSTER document.
"""
# @ApiMember(Description="The version of the transfer header.", IsRequired=true)
version: Optional[str] = None
"""
The version of the transfer header.
"""
# @ApiMember(Description="The tax operation used in the ELSTER process.", IsRequired=true)
verfahren: Optional[Verfahren] = None
"""
The tax operation used in the ELSTER process.
"""
# @ApiMember(Description="The tax data type of the ELSTER process.", IsRequired=true)
daten_art: Optional[Datenart] = None
"""
The tax data type of the ELSTER process.
"""
# @ApiMember(Description="The authentification procedure of the ELSTER process.", IsRequired=true)
vorgang: Optional[Vorgang] = None
"""
The authentification procedure of the ELSTER process.
"""
# @ApiMember(Description="The ticket identifier after a successful ELSTER process.")
transfer_ticket: Optional[str] = None
"""
The ticket identifier after a successful ELSTER process.
"""
# @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.")
testmerker: Optional[Testmerker] = None
"""
The flag that indicates whether the tax declaration or filing is a test case. For production purposes, this value should not be set.
"""
# @ApiMember(Description="The signature and associated information on the compressed, encrypted, base64-encoded content of the the data part of a tax declaration / statement.")
sig_user: Optional[SigUser] = None
"""
The signature and associated information on the compressed, encrypted, base64-encoded content of the the data part of a tax declaration / statement.
"""
# @ApiMember(Description="The receiving ELSTER server.")
empfaenger: Optional[Empfaenger] = None
"""
The receiving ELSTER server.
"""
# @ApiMember(Description="The identifier of the software manufacturer, through whose software the tax declaration is filed.", IsRequired=true)
hersteller_i_d: Optional[str] = None
"""
The identifier of the software manufacturer, through whose software the tax declaration is filed.
"""
# @ApiMember(Description="The details of the provider that submits tax data.", IsRequired=true)
daten_lieferant: Optional[str] = None
"""
The details of the provider that submits tax data.
"""
# @ApiMember(Description="The date of receipt of the tax data.")
eingangs_datum: Optional[datetime.datetime] = None
"""
The date of receipt of the tax data.
"""
# @ApiMember(Description="The encryption data required for authenticated transmission of tax data.")
datei: Optional[Datei] = None
"""
The encryption data required for authenticated transmission of tax data.
"""
# @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.")
rc: Optional[RC] = None
"""
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.
"""
# @ApiMember(Description="The details of the software that submits the tax data.")
version_client: Optional[str] = None
"""
The details of the software that submits the tax data.
"""
# @ApiMember(Description="Data extensions to the transfer header.")
zusatz: Optional[Zusatz] = None
"""
Data extensions to the transfer header.
"""
class EmpfaengerID(str, Enum):
"""
Represents a receriver ID
"""
L = 'L'
F = 'F'
# @Api(Description="Represents a receiver of tax data.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class NDHEmpfaenger:
"""
Represents a receiver of tax data.
"""
# @ApiMember(Description="The identifier of the receiver.")
id: Optional[EmpfaengerID] = None
"""
The identifier of the receiver.
"""
# @ApiMember(Description="The value of the receiver.")
value: Optional[str] = None
"""
The value of the receiver.
"""
# @Api(Description="Represents a manufacturer/vendor of tax software.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Hersteller:
"""
Represents a manufacturer/vendor of tax software.
"""
# @ApiMember(Description="The product name of the tax software produced by the manufacturer.")
produkt_name: Optional[str] = None
"""
The product name of the tax software produced by the manufacturer.
"""
# @ApiMember(Description="The product version of the tax software produced by the manufacturer.")
produkt_version: Optional[str] = None
"""
The product version of the tax software produced by the manufacturer.
"""
# @Api(Description="Represents the header of a tax data.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class NutzdatenHeader:
"""
Represents the header of a tax data.
"""
# @ApiMember(Description="The version of the header.", IsRequired=true)
version: Optional[str] = None
"""
The version of the header.
"""
# @ApiMember(Description="The ticket identifier of the header.", IsRequired=true)
nutzdaten_ticket: Optional[str] = None
"""
The ticket identifier of the header.
"""
# @ApiMember(Description="The receiver of the header.", IsRequired=true)
empfaenger: Optional[NDHEmpfaenger] = None
"""
The receiver of the header.
"""
# @ApiMember(Description="The software manufacturer, through whose software the tax declaration or filing is submitted.", IsRequired=true)
hersteller: Optional[Hersteller] = None
"""
The software manufacturer, through whose software the tax declaration or filing is submitted.
"""
# @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.")
daten_lieferant: Optional[str] = None
"""
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.
"""
# @ApiMember(Description="The return code of the header.")
rc: Optional[RC] = None
"""
The return code of the header.
"""
# @ApiMember(Description="The data extensions of the header.")
zusatz: Optional[Zusatz] = None
"""
The data extensions of the header.
"""
# @Api(Description="Represents an encapsulation of tax data content.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Nutzdaten:
"""
Represents an encapsulation of tax data content.
"""
# @ApiMember(Description="The content of the tax data. This varies by tax declaration. Currently supported formats: Raw XML (text), XElement, and IXmlSerializable", IsRequired=true)
inhalt: Optional[Object] = None
"""
The content of the tax data. This varies by tax declaration. Currently supported formats: Raw XML (text), XElement, and IXmlSerializable
"""
# @Api(Description="Represents a block of tax data.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Nutzdatenblock:
"""
Represents a block of tax data.
"""
# @ApiMember(Description="The header part of the block.", IsRequired=true)
nutzdaten_header: Optional[NutzdatenHeader] = None
"""
The header part of the block.
"""
# @ApiMember(Description="The data part of the block.", IsRequired=true)
nutzdaten: Optional[Nutzdaten] = None
"""
The data part of the block.
"""
# @Api(Description="Represents the data part of an ELSTER document.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class DatenTeil:
"""
Represents the data part of an ELSTER document.
"""
# @ApiMember(Description="The blocks of tax data of the ELSTER document.", IsRequired=true)
nutzdatenbloecke: List[Nutzdatenblock] = field(default_factory=list)
"""
The blocks of tax data of the ELSTER document.
"""
# @Api(Description="Represents an ELSTER document.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Elster:
"""
Represents an ELSTER document.
"""
# @ApiMember(Description="The transfer header part of the ELSTER document.", IsRequired=true)
transfer_header: Optional[TransferHeader] = None
"""
The transfer header part of the ELSTER document.
"""
# @ApiMember(Description="The data (facts) part of the ELSTER document.")
daten_teil: Optional[DatenTeil] = None
"""
The data (facts) part of the ELSTER document.
"""
# @Api(Description="Represents information about a file or directory.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class FileMetadata(IFileMetadata):
"""
Represents information about a file or directory.
"""
# @ApiMember(Description="The name of the file.\nFor files, gets the name of the file.\nFor directories, gets the name of the last directory in the hierarchy if a hierarchy exists; otherwise, the name of the directory.")
name: Optional[str] = None
"""
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.
"""
# @ApiMember(Description="The full path of the directory or file.")
full_name: Optional[str] = None
"""
The full path of the directory or file.
"""
# @ApiMember(Description="The time the current file or directory was last accessed.")
last_access_time: datetime.datetime = datetime.datetime(1, 1, 1)
"""
The time the current file or directory was last accessed.
"""
# @ApiMember(Description="The name of the file.")
last_access_time_utc: datetime.datetime = datetime.datetime(1, 1, 1)
"""
The name of the file.
"""
# @ApiMember(Description="The time when the current file or directory was last written to.")
last_write_time: datetime.datetime = datetime.datetime(1, 1, 1)
"""
The time when the current file or directory was last written to.
"""
# @ApiMember(Description="The time, in coordinated universal time (UTC), when the current file or directory was last written to.")
last_write_time_utc: datetime.datetime = datetime.datetime(1, 1, 1)
"""
The time, in coordinated universal time (UTC), when the current file or directory was last written to.
"""
# @ApiMember(Description="The size, in bytes, of the current file.")
length: int = 0
"""
The size, in bytes, of the current file.
"""
# @ApiMember(Description="The size, in bytes, of the current file.")
user_id: int = 0
"""
The size, in bytes, of the current file.
"""
# @ApiMember(Description="The file group id.")
group_id: int = 0
"""
The file group id.
"""
# @ApiMember(Description="A value that indicates whether the others can read from this file.")
others_can_read: bool = False
"""
A value that indicates whether the others can read from this file.
"""
# @ApiMember(Description="A value that indicates whether the group members can execute this file.")
group_can_execute: bool = False
"""
A value that indicates whether the group members can execute this file.
"""
# @ApiMember(Description="A value that indicates whether the group members can write into this file.")
group_can_write: bool = False
"""
A value that indicates whether the group members can write into this file.
"""
# @ApiMember(Description="A value that indicates whether the group members can read from this file.")
group_can_read: bool = False
"""
A value that indicates whether the group members can read from this file.
"""
# @ApiMember(Description="A value that indicates whether the owner can execute this file.")
owner_can_execute: bool = False
"""
A value that indicates whether the owner can execute this file.
"""
# @ApiMember(Description="A value that indicates whether the owner can write into this file.")
owner_can_write: bool = False
"""
A value that indicates whether the owner can write into this file.
"""
# @ApiMember(Description="A value that indicates whether the owner can read from this file.")
owner_can_read: bool = False
"""
A value that indicates whether the owner can read from this file.
"""
# @ApiMember(Description="A value that indicates whether others can read from this file.")
others_can_execute: bool = False
"""
A value that indicates whether others can read from this file.
"""
# @ApiMember(Description="A value that indicates whether others can write into this file.")
others_can_write: bool = False
"""
A value that indicates whether others can write into this file.
"""
# @ApiMember(Description="Extensions to the file attributes.")
extensions: Dict[str, str] = field(default_factory=dict)
"""
Extensions to the file attributes.
"""
# @Api(Description="Represents a generic file that contains raw data content in bytes")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class BinaryFile(FileBase):
"""
Represents a generic file that contains raw data content in bytes
"""
# @ApiMember(Description="The attributes of the file.")
metadata: Optional[FileMetadata] = None
"""
The attributes of the file.
"""
# @ApiMember(Description="The name of the file without information on its directory path.")
name: Optional[str] = None
"""
The name of the file without information on its directory path.
"""
# @Api(Description="A type that encapsulates the return values from the ERiC API function that processes tax data.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class BearbeiteVorgangResponse(EricFehlerCodeResponse):
"""
A type that encapsulates the return values from the ERiC API function that processes tax data.
"""
# @ApiMember(Description="The return value of the process.")
rueckgabe: Optional[EricBearbeiteVorgang] = None
"""
The return value of the process.
"""
# @ApiMember(Description="The server response of the process.")
serverantwort: Optional[Elster] = None
"""
The server response of the process.
"""
# @ApiMember(Description="If available, the PDF-based files to represent generated transfer prototocols.")
transfer_protocols: List[BinaryFile] = field(default_factory=list)
"""
If available, the PDF-based files to represent generated transfer prototocols.
"""
# @Api(Description="An asynchronous service to submit an preliminary VAT return (Umsatzsteuervoranmeldung) as a tax consultant for 2026.")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class SubmitUStVa2026AsTaxConsultantAsync(SubmitUStVa2026AsTaxConsultantBase):
"""
An asynchronous service to submit an preliminary VAT return (Umsatzsteuervoranmeldung) as a tax consultant for 2026.
"""
pass
Python SubmitUStVa2026AsTaxConsultantAsync DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /SubmitUStVa2026AsTaxConsultantAsync HTTP/1.1
Host: taxfiling.staging.pwc.de
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"umsatzsteuervoranmeldung":{"jahr":0,"zeitraum":"0","steuernummer":"String","wIdNr":"String","kz09":{"herstellerId":0,"beraterName":"String","berufsbezeichnung":"String","beraterTelNrVorwahl":"String","beraterTelNrAnschluss":"String","mandantName":"String"},"kz10":{"wert":0},"kz21":{"wert":0},"kz22":{"wert":0},"kz500":"0","kz500_Begruendung":"String","kz26":{"wert":0},"kz29":{"wert":0},"kz35":{"wert":0},"kz36":{"wert":0},"kz37":{"wert":0},"kz39":{"wert":0},"kz41":{"wert":0},"kz42":{"wert":0},"kz43":{"wert":0},"kz44":{"wert":0},"kz45":{"wert":0},"kz46":{"wert":0},"kz47":{"wert":0},"kz48":{"wert":0},"kz49":{"wert":0},"kz50":{"wert":0},"kz59":{"wert":0},"kz60":{"wert":0},"kz61":{"wert":0},"kz62":{"wert":0},"kz63":{"wert":0},"kz64":{"wert":0},"kz65":{"wert":0},"kz66":{"wert":0},"kz67":{"wert":0},"kz69":{"wert":0},"kz70":"\/Date(-62135596800000-0000)\/","kz73":{"wert":0},"kz74":{"wert":0},"kz76":{"wert":0},"kz77":{"wert":0},"kz80":{"wert":0},"kz81":{"wert":0},"kz83":{"wert":0},"kz84":{"wert":0},"kz85":{"wert":0},"kz86":{"wert":0},"kz87":{"wert":0},"kz89":{"wert":0},"kz90":{"wert":0},"kz91":{"wert":0},"kz93":{"wert":0},"kz94":{"wert":0},"kz95":{"wert":0},"kz96":{"wert":0},"kz98":{"wert":0}},"datenLieferant":{"name":"String","strasse":"String","plz":"String","ort":"String","telefon":"String","email":"String"},"erstellungsdatum":"\/Date(-62135596800000-0000)\/","berater":{"bezeichnung":"String","name":"String","vorname":"String","namensvorsatz":"String","namenszusatz":"String","str":"String","hausnummer":"String","hNrZusatz":"String","anschriftenZusatz":"String","ort":"String","plz":"String","auslandsPLZ":"String","land":"String","postfachOrt":"String","postfach":"String","postfachPLZ":"String","gkplz":"String","telefon":"String","email":"String"},"mandant":{"name":"String","vorname":"String","mandantenNr":"String","bearbeiterkennzeichen":"String"},"bundesfinanzamtsnummer":"String","eop":{"transferausgabe":"String"},"duplexDruck":false,"protocolPrefix":"String","fussText":"String","zertifikat":{"name":"String","pin":"String","description":"String","tags":["String"],"content":"AA=="}}
HTTP/1.1 200 OK
Content-Type: text/csv
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":"AbrufcodeAntrag","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"}}}