/* Options: Date: 2024-04-27 13:40:47 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.pwc.de //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ValidiereUndSende.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Represents a structure that encapsulates a tax declaration. */ // @Api(Description="Represents a structure that encapsulates a tax declaration.") class TaxData implements IConvertible { /** * The unique identifier of the tax data. */ // @ApiMember(Description="The unique identifier of the tax data.", IsRequired=true) String? id; /** * The XML-based tax declaration. */ // @ApiMember(Description="The XML-based tax declaration.", IsRequired=true) String? content; TaxData({this.id,this.content}); TaxData.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; content = json['content']; return this; } Map toJson() => { 'id': id, 'content': content }; getTypeName() => "TaxData"; TypeContext? context = _ctx; } /** * A base service to process tax data. */ // @Api(Description="A base service to process tax data.") abstract class BearbeiteVorgangBase implements IPost { /** * The tax data to process. */ // @ApiMember(Description="The tax data to process.", Name="Data") TaxData? data; BearbeiteVorgangBase({this.data}); BearbeiteVorgangBase.fromJson(Map json) { fromMap(json); } fromMap(Map json) { data = JsonConverters.fromJson(json['data'],'TaxData',context!); return this; } Map toJson() => { 'data': JsonConverters.toJson(data,'TaxData',context!) }; getTypeName() => "BearbeiteVorgangBase"; TypeContext? context = _ctx; } abstract class IDruckRequest { bool? duplexDruck; String? protocolPrefix; String? fussText; } abstract class ISendeRequest { String? datenLieferant; } /** * A base service to validate and send tax data. */ // @Api(Description="A base service to validate and send tax data.") abstract class ValidiereUndSendeBase extends BearbeiteVorgangBase implements ISendeRequest, IDruckRequest { /** * Name prefix of the generated transfer protocol file. */ // @ApiMember(Description="Name prefix of the generated transfer protocol file.", Name="ProtocolPrefix") String? protocolPrefix; /** * Footer text to be used on the printout (optional). */ // @ApiMember(Description="Footer text to be used on the printout (optional).", Name="FussText") String? fussText; /** * 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="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") bool? duplexDruck; /** * The details of the provider that submits tax data. */ // @ApiMember(Description="The details of the provider that submits tax data.", Name="DatenLieferant") String? datenLieferant; /** * The tax data to process. */ // @ApiMember(Description="The tax data to process.", Name="Data") TaxData? data; ValidiereUndSendeBase({this.protocolPrefix,this.fussText,this.duplexDruck,this.datenLieferant,this.data}); ValidiereUndSendeBase.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); protocolPrefix = json['protocolPrefix']; fussText = json['fussText']; duplexDruck = json['duplexDruck']; datenLieferant = json['datenLieferant']; data = JsonConverters.fromJson(json['data'],'TaxData',context!); return this; } Map toJson() => super.toJson()..addAll({ 'protocolPrefix': protocolPrefix, 'fussText': fussText, 'duplexDruck': duplexDruck, 'datenLieferant': datenLieferant, 'data': JsonConverters.toJson(data,'TaxData',context!) }); getTypeName() => "ValidiereUndSendeBase"; TypeContext? context = _ctx; } /** * Auflistung aller gültigen Datenarten. */ enum Datenart { Anlage34a, AnpassungVorauszahlung, AntragUStVerguetung4a, AbrufcodeAntrag, AenderungAdresse, AbrufcodeStorno, AbrufvollmachtAnlage, AbrufvollmachtUpdate, AenderungBankverbindung, AntraegeRechteLoeschen, AntraegeUndRechte, Aufzeichnung146a, BetPG, Bilanz, Belegnachreichung, BSBMitteilung, BZSt2, C19Mitteilung, DUeAbmelden, DUeAnmelden, DUeUmmelden, Einspruch, EinspruchNachtrag, EinspruchRuecknahme, ELeVAntragELStAM, ELeVErmaessigung, ELeVGetrenntlebend, ELeVSteuerklassenwechsel, ELeVWiederaufnahmeEhe, EPAntwort, EPBescheid, EPMitteilung, EPKurzmitteilung, ElsterErklaerungDaten, ElsterKMVDaten, ElsterLohn2Daten, ElsterLohnDaten, ElsterVaStDaten, ElsterDIVADaten, ElsterDIVDaten, ElsterEPBescheidDaten, ElsterEPMitteilungDaten, EPStBescheidAbholung, EPStMitteilungAbholung, Erbschaftsteuer, ESt, EStbeschraenkt, EUER, EUn, FEIN, ForschungZulAntrag, KStAntragOptionPersG, FLHMitteilung, FreistellungKapitalertraegeBV, Fristverlaengerung, FsEVerein, Gewerbemeldung, GDBMitteilung, Gewinnermittlung13aEStG, GewSt, GewStZ, GrundsteuerBW, GrundsteuerBY, GrundsteuerHE, GrundsteuerHH, GrundsteuerNI, Grundsteuerwert, InvStG56Abs5, InvStG51Feststellung, KapEStA, KapEStInvStG, KapG, KapGAus, KKVMitteilung, Kontoabfrage, Kontoinformation, KSt, KStZ, KTTAnmeldungHH, KTTAnzeigeHH, Lohnersatzleistung, LohnersatzMitteilung, LStA, LStB, LStHVVMAnlage, LStHVVMUpdate, OGHMitteilung, VermoegenswirksameLeistung, VMWiderruf, VollmachtDetails, VNoVMVRegistrierung, VNoVMVUpdate, VNoVMVLoeschung, VollfAAnlage, VollfAUpdate, VMoVMVStBAnlage, VMoVMVStBUpdate, VMoVMVFreischaltung, VAGMitteilung, DIVADatenBZSt, DivaEinwilligungAnlageBRM, DivaEinwilligungFreisch, DivaEinwilligungUpdateBRM, DivaWiderrufBRM, DivaErgebnisliste, LStHVDivaAdresseBRM, VMErgebnisListeVNSicht, PersG, PostfachAnfrage, PostfachStatus, ProtokollAnforderung, Registrierung, Schenkungsteuer, SonstigeNachrichten, SpezRechtAntrag, SpezRechtFreischaltung, SpezRechtListe, SpezRechtStorno, SpezRechtTeilnahme, StAb50a, Statusabfrage, UnentgeltlicheDepotuebertragung, UENSTAnmeldungBE, UENSTAnzeigeBE, USt, UStVA, UStDV, UStSV, VGNAnmeldungHB, VGNAnmeldungBE, VGNAnmeldungHH, VGNAnzeigeHH, WTBAnmeldungHB, ZMDO, ElsterVollmachtDaten, MitteilungAbholung, } /** * Enumeration of ERiC API error codes. */ enum EricFehlerCode { ERIC_OK, ERIC_GLOBAL_UNKNOWN, ERIC_GLOBAL_PRUEF_FEHLER, ERIC_GLOBAL_HINWEISE, ERIC_GLOBAL_FEHLERMELDUNG_NICHT_VORHANDEN, ERIC_GLOBAL_KEINE_DATEN_VORHANDEN, ERIC_GLOBAL_NICHT_GENUEGEND_ARBEITSSPEICHER, ERIC_GLOBAL_DATEI_NICHT_GEFUNDEN, ERIC_GLOBAL_HERSTELLER_ID_NICHT_ERLAUBT, ERIC_GLOBAL_ILLEGAL_STATE, ERIC_GLOBAL_FUNKTION_NICHT_ERLAUBT, ERIC_GLOBAL_ECHTFALL_NICHT_ERLAUBT, ERIC_GLOBAL_NO_VERSAND_IN_BETA_VERSION, ERIC_GLOBAL_TESTMERKER_UNGUELTIG, ERIC_GLOBAL_DATENSATZ_ZU_GROSS, ERIC_GLOBAL_VERSCHLUESSELUNGS_PARAMETER_NICHT_ERLAUBT, ERIC_GLOBAL_NUR_PORTALZERTIFIKAT_ERLAUBT, ERIC_GLOBAL_ABRUFCODE_NICHT_ERLAUBT, ERIC_GLOBAL_ERROR_XML_CREATE, ERIC_GLOBAL_TEXTPUFFERGROESSE_FIX, ERIC_GLOBAL_INTERNER_FEHLER, ERIC_GLOBAL_ARITHMETIKFEHLER, ERIC_GLOBAL_STEUERNUMMER_UNGUELTIG, ERIC_GLOBAL_STEUERNUMMER_FALSCHE_LAENGE, ERIC_GLOBAL_STEUERNUMMER_NICHT_NUMERISCH, ERIC_GLOBAL_LANDESNUMMER_UNBEKANNT, ERIC_GLOBAL_BUFANR_UNBEKANNT, ERIC_GLOBAL_LANDESNUMMER_BUFANR, ERIC_GLOBAL_PUFFER_ZUGRIFFSKONFLIKT, ERIC_GLOBAL_PUFFER_UEBERLAUF, ERIC_GLOBAL_DATENARTVERSION_UNBEKANNT, ERIC_GLOBAL_DATENARTVERSION_XML_INKONSISTENT, ERIC_GLOBAL_COMMONDATA_NICHT_VERFUEGBAR, ERIC_GLOBAL_LOG_EXCEPTION, ERIC_GLOBAL_TRANSPORTSCHLUESSEL_NICHT_ERLAUBT, ERIC_GLOBAL_OEFFENTLICHER_SCHLUESSEL_UNGUELTIG, ERIC_GLOBAL_TRANSPORTSCHLUESSEL_TYP_FALSCH, ERIC_GLOBAL_PUFFER_UNGLEICHER_INSTANZ, ERIC_GLOBAL_VORSATZ_UNGUELTIG, ERIC_GLOBAL_DATEIZUGRIFF_VERWEIGERT, ERIC_GLOBAL_UNGUELTIGE_INSTANZ, ERIC_GLOBAL_NICHT_INITIALISIERT, ERIC_GLOBAL_MEHRFACHE_INITIALISIERUNG, ERIC_GLOBAL_FEHLER_INITIALISIERUNG, ERIC_GLOBAL_UNKNOWN_PARAMETER_ERROR, ERIC_GLOBAL_CHECK_CORRUPTED_NDS, ERIC_GLOBAL_VERSCHLUESSELUNGS_PARAMETER_NICHT_ANGEGEBEN, ERIC_GLOBAL_SEND_FLAG_MEHR_ALS_EINES, ERIC_GLOBAL_UNGUELTIGE_FLAG_KOMBINATION, ERIC_GLOBAL_ERSTE_SEITE_DRUCK_NICHT_UNTERSTUETZT, ERIC_GLOBAL_UNGUELTIGER_PARAMETER, ERIC_GLOBAL_DRUCK_FUER_VERFAHREN_NICHT_ERLAUBT, ERIC_GLOBAL_VERSAND_ART_NICHT_UNTERSTUETZT, ERIC_GLOBAL_UNGUELTIGE_PARAMETER_VERSION, ERIC_GLOBAL_TRANSFERHANDLE, ERIC_GLOBAL_PLUGININITIALISIERUNG, ERIC_GLOBAL_INKOMPATIBLE_VERSIONEN, ERIC_GLOBAL_VERSCHLUESSELUNGSVERFAHREN_NICHT_UNTERSTUETZT, ERIC_GLOBAL_MEHRFACHAUFRUFE_NICHT_UNTERSTUETZT, ERIC_GLOBAL_UTI_COUNTRY_NOT_SUPPORTED, ERIC_GLOBAL_IBAN_FORMALER_FEHLER, ERIC_GLOBAL_IBAN_LAENDERCODE_FEHLER, ERIC_GLOBAL_IBAN_LANDESFORMAT_FEHLER, ERIC_GLOBAL_IBAN_PRUEFZIFFER_FEHLER, ERIC_GLOBAL_BIC_FORMALER_FEHLER, ERIC_GLOBAL_BIC_LAENDERCODE_FEHLER, ERIC_GLOBAL_ZULASSUNGSNUMMER_ZU_LANG, ERIC_GLOBAL_IDNUMMER_UNGUELTIG, ERIC_GLOBAL_NULL_PARAMETER, ERIC_GLOBAL_EWAZ_UNGUELTIG, ERIC_GLOBAL_EWAZ_LANDESKUERZEL_UNBEKANNT, ERIC_GLOBAL_UPDATE_NECESSARY, ERIC_GLOBAL_EINSTELLUNG_NAME_UNGUELTIG, ERIC_GLOBAL_EINSTELLUNG_WERT_UNGUELTIG, ERIC_GLOBAL_ERR_DEKODIEREN, ERIC_GLOBAL_FUNKTION_NICHT_UNTERSTUETZT, ERIC_GLOBAL_NUTZDATENTICKETS_NICHT_EINDEUTIG, ERIC_GLOBAL_NUTZDATENHEADERVERSIONEN_UNEINHEITLICH, ERIC_GLOBAL_BUNDESLAENDER_UNEINHEITLICH, ERIC_GLOBAL_ZEITRAEUME_UNEINHEITLICH, ERIC_GLOBAL_NUTZDATENHEADER_EMPFAENGER_NICHT_KORREKT, ERIC_TRANSFER_COM_ERROR, ERIC_TRANSFER_VORGANG_NICHT_UNTERSTUETZT, ERIC_TRANSFER_ERR_XML_THEADER, ERIC_TRANSFER_ERR_PARAM, ERIC_TRANSFER_ERR_DATENTEILENDNOTFOUND, ERIC_TRANSFER_ERR_BEGINDATENLIEFERANT, ERIC_TRANSFER_ERR_ENDDATENLIEFERANT, ERIC_TRANSFER_ERR_BEGINTRANSPORTSCHLUESSEL, ERIC_TRANSFER_ERR_ENDTRANSPORTSCHLUESSEL, ERIC_TRANSFER_ERR_BEGINDATENGROESSE, ERIC_TRANSFER_ERR_ENDDATENGROESSE, ERIC_TRANSFER_ERR_SEND, ERIC_TRANSFER_ERR_NOTENCRYPTED, ERIC_TRANSFER_ERR_PROXYCONNECT, ERIC_TRANSFER_ERR_CONNECTSERVER, ERIC_TRANSFER_ERR_NORESPONSE, ERIC_TRANSFER_ERR_PROXYAUTH, ERIC_TRANSFER_ERR_SEND_INIT, ERIC_TRANSFER_ERR_TIMEOUT, ERIC_TRANSFER_ERR_PROXYPORT_INVALID, ERIC_TRANSFER_ERR_OTHER, ERIC_TRANSFER_ERR_XML_NHEADER, ERIC_TRANSFER_ERR_XML_ENCODING, ERIC_TRANSFER_ERR_ENDSIGUSER, ERIC_TRANSFER_ERR_XMLTAG_NICHT_GEFUNDEN, ERIC_TRANSFER_ERR_DATENTEILFEHLER, ERIC_TRANSFER_EID_ZERTIFIKATFEHLER, ERIC_TRANSFER_EID_KEINKONTO, ERIC_TRANSFER_EID_IDNRNICHTEINDEUTIG, ERIC_TRANSFER_EID_SERVERFEHLER, ERIC_TRANSFER_EID_KEINCLIENT, ERIC_TRANSFER_EID_CLIENTFEHLER, ERIC_TRANSFER_EID_FEHLENDEFELDER, ERIC_TRANSFER_EID_IDENTIFIKATIONABGEBROCHEN, ERIC_TRANSFER_EID_NPABLOCKIERT, ERIC_CRYPT_ERROR_CREATE_KEY, ERIC_CRYPT_E_INVALID_HANDLE, ERIC_CRYPT_E_MAX_SESSION, ERIC_CRYPT_E_BUSY, ERIC_CRYPT_E_OUT_OF_MEM, ERIC_CRYPT_E_PSE_PATH, ERIC_CRYPT_E_PIN_WRONG, ERIC_CRYPT_E_PIN_LOCKED, ERIC_CRYPT_E_P7_READ, ERIC_CRYPT_E_P7_DECODE, ERIC_CRYPT_E_P7_RECIPIENT, ERIC_CRYPT_E_P12_READ, ERIC_CRYPT_E_P12_DECODE, ERIC_CRYPT_E_P12_SIG_KEY, ERIC_CRYPT_E_P12_ENC_KEY, ERIC_CRYPT_E_P11_SIG_KEY, ERIC_CRYPT_E_P11_ENC_KEY, ERIC_CRYPT_E_XML_PARSE, ERIC_CRYPT_E_XML_SIG_ADD, ERIC_CRYPT_E_XML_SIG_TAG, ERIC_CRYPT_E_XML_SIG_SIGN, ERIC_CRYPT_E_ENCODE_UNKNOWN, ERIC_CRYPT_E_ENCODE_ERROR, ERIC_CRYPT_E_XML_INIT, ERIC_CRYPT_E_ENCRYPT, ERIC_CRYPT_E_DECRYPT, ERIC_CRYPT_E_P11_SLOT_EMPTY, ERIC_CRYPT_E_NO_SIG_ENC_KEY, ERIC_CRYPT_E_LOAD_DLL, ERIC_CRYPT_E_NO_SERVICE, ERIC_CRYPT_E_ESICL_EXCEPTION, ERIC_CRYPT_E_TOKEN_TYPE_MISMATCH, ERIC_CRYPT_E_P12_CREATE, ERIC_CRYPT_E_VERIFY_CERT_CHAIN, ERIC_CRYPT_E_P11_ENGINE_LOADED, ERIC_CRYPT_E_USER_CANCEL, ERIC_CRYPT_ZERTIFIKAT, ERIC_CRYPT_SIGNATUR, ERIC_CRYPT_NICHT_UNTERSTUETZTES_PSE_FORMAT, ERIC_CRYPT_PIN_BENOETIGT, ERIC_CRYPT_PIN_STAERKE_NICHT_AUSREICHEND, ERIC_CRYPT_E_INTERN, ERIC_CRYPT_ZERTIFIKATSPFAD_KEIN_VERZEICHNIS, ERIC_CRYPT_ZERTIFIKATSDATEI_EXISTIERT_BEREITS, ERIC_CRYPT_PIN_ENTHAELT_UNGUELTIGE_ZEICHEN, ERIC_CRYPT_E_INVALID_PARAM_ABC, ERIC_CRYPT_CORRUPTED, ERIC_CRYPT_EIDKARTE_NICHT_UNTERSTUETZT, ERIC_CRYPT_E_SC_SLOT_EMPTY, ERIC_CRYPT_E_SC_NO_APPLET, ERIC_CRYPT_E_SC_SESSION, ERIC_CRYPT_E_P11_NO_SIG_CERT, ERIC_CRYPT_E_P11_INIT_FAILED, ERIC_CRYPT_E_P11_NO_ENC_CERT, ERIC_CRYPT_E_P12_NO_SIG_CERT, ERIC_CRYPT_E_P12_NO_ENC_CERT, ERIC_CRYPT_E_SC_ENC_KEY, ERIC_CRYPT_E_SC_NO_SIG_CERT, ERIC_CRYPT_E_SC_NO_ENC_CERT, ERIC_CRYPT_E_SC_INIT_FAILED, ERIC_CRYPT_E_SC_SIG_KEY, ERIC_IO_FEHLER, ERIC_IO_DATEI_INKORREKT, ERIC_IO_PARSE_FEHLER, ERIC_IO_NDS_GENERIERUNG_FEHLGESCHLAGEN, ERIC_IO_MASTERDATENSERVICE_NICHT_VERFUEGBAR, ERIC_IO_STEUERZEICHEN_IM_NDS, ERIC_IO_VERSIONSINFORMATIONEN_NICHT_GEFUNDEN, ERIC_IO_FALSCHES_VERFAHREN, ERIC_IO_READER_MEHRFACHE_STEUERFAELLE, ERIC_IO_READER_UNERWARTETE_ELEMENTE, ERIC_IO_READER_FORMALE_FEHLER, ERIC_IO_READER_FALSCHES_ENCODING, ERIC_IO_READER_MEHRFACHE_NUTZDATEN_ELEMENTE, ERIC_IO_READER_MEHRFACHE_NUTZDATENBLOCK_ELEMENTE, ERIC_IO_UNBEKANNTE_DATENART, ERIC_IO_READER_UNTERSACHBEREICH_UNGUELTIG, ERIC_IO_READER_ZU_VIELE_NUTZDATENBLOCK_ELEMENTE, ERIC_IO_READER_STEUERZEICHEN_IM_TRANSFERHEADER, ERIC_IO_READER_STEUERZEICHEN_IM_NUTZDATENHEADER, ERIC_IO_READER_STEUERZEICHEN_IN_DEN_NUTZDATEN, ERIC_IO_READER_ZU_VIELE_ANHAENGE, ERIC_IO_READER_ANHANG_ZU_GROSS, ERIC_IO_READER_ANHAENGE_ZU_GROSS, ERIC_IO_READER_SCHEMA_VALIDIERUNGSFEHLER, ERIC_IO_READER_UNBEKANNTE_XML_ENTITY, ERIC_IO_DATENTEILNOTFOUND, ERIC_IO_DATENTEILENDNOTFOUND, ERIC_IO_UEBERGABEPARAMETER_FEHLERHAFT, ERIC_IO_UNGUELTIGE_UTF8_SEQUENZ, ERIC_IO_UNGUELTIGE_ZEICHEN_IN_PARAMETER, ERIC_PRINT_INTERNER_FEHLER, ERIC_PRINT_DRUCKVORLAGE_NICHT_GEFUNDEN, ERIC_PRINT_UNGUELTIGER_DATEI_PFAD, ERIC_PRINT_INITIALISIERUNG_FEHLERHAFT, ERIC_PRINT_AUSGABEZIEL_UNBEKANNT, ERIC_PRINT_ABBRUCH_DRUCKVORBEREITUNG, ERIC_PRINT_ABBRUCH_GENERIERUNG, ERIC_PRINT_STEUERFALL_NICHT_UNTERSTUETZT, ERIC_PRINT_FUSSTEXT_ZU_LANG, } /** * Specifies a service response from an ERiC service operation. */ // @Api(Description="Specifies a service response from an ERiC service operation.") abstract class ServiceReponseBase implements IHasIndex { /** * The unique identifier of the response. */ // @ApiMember(Description="The unique identifier of the response.", Name="Id") String? id; /** * The position of the response element in an indexed collection. */ // @ApiMember(Description="The position of the response element in an indexed collection.", Name="Index") int? index; /** * Metadata that contains structured error information on the service response. */ // @ApiMember(Description="Metadata that contains structured error information on the service response.", Name="ResponseStatus") ResponseStatus? responseStatus; ServiceReponseBase({this.id,this.index,this.responseStatus}); ServiceReponseBase.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; index = json['index']; responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'id': id, 'index': index, 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!) }; getTypeName() => "ServiceReponseBase"; TypeContext? context = _ctx; } /** * Represent a base response that encapsulate any ERiC API function return value. */ // @Api(Description="Represent a base response that encapsulate any ERiC API function return value.") class EricFehlerCodeResponse extends ServiceReponseBase implements IConvertible { /** * The status code that the ERiC API function returns. */ // @ApiMember(Description="The status code that the ERiC API function returns.", Name="StatusCode") EricFehlerCode? statusCode; /** * The status message that the ERiC API function returns. */ // @ApiMember(Description="The status message that the ERiC API function returns.", Name="StatusText") String? statusText; /** * The unique identifier of the response. */ // @ApiMember(Description="The unique identifier of the response.", Name="Id") String? id; /** * The position of the response element in an indexed collection. */ // @ApiMember(Description="The position of the response element in an indexed collection.", Name="Index") int? index; /** * Metadata that contains structured error information on the service response. */ // @ApiMember(Description="Metadata that contains structured error information on the service response.", Name="ResponseStatus") ResponseStatus? responseStatus; EricFehlerCodeResponse({this.statusCode,this.statusText,this.id,this.index,this.responseStatus}); EricFehlerCodeResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); statusCode = JsonConverters.fromJson(json['statusCode'],'EricFehlerCode',context!); statusText = json['statusText']; id = json['id']; index = json['index']; responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); return this; } Map toJson() => super.toJson()..addAll({ 'statusCode': JsonConverters.toJson(statusCode,'EricFehlerCode',context!), 'statusText': statusText, 'id': id, 'index': index, 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!) }); getTypeName() => "EricFehlerCodeResponse"; TypeContext? context = _ctx; } abstract class IHasIndex { int? index; } /** * Represents information returned from a successful tax declaration process. */ // @Api(Description="Represents information returned from a successful tax declaration process.") class Erfolg implements IConvertible { /** * The generated tele-number for the successful tax declaration process. */ // @ApiMember(Description="The generated tele-number for the successful tax declaration process.") List? telenummer; /** * The classification key for the successful tax declaration process. */ // @ApiMember(Description="The classification key for the successful tax declaration process.") List? ordnungsbegriffe; Erfolg({this.telenummer,this.ordnungsbegriffe}); Erfolg.fromJson(Map json) { fromMap(json); } fromMap(Map json) { telenummer = JsonConverters.fromJson(json['telenummer'],'List',context!); ordnungsbegriffe = JsonConverters.fromJson(json['ordnungsbegriffe'],'List',context!); return this; } Map toJson() => { 'telenummer': JsonConverters.toJson(telenummer,'List',context!), 'ordnungsbegriffe': JsonConverters.toJson(ordnungsbegriffe,'List',context!) }; getTypeName() => "Erfolg"; TypeContext? context = _ctx; } /** * Represents information on the delivery. */ // @Api(Description="Represents information on the delivery.") class Transfer implements IConvertible { /** * The ticket of the transfer. */ // @ApiMember(Description="The ticket of the transfer.") String? transferTicket; Transfer({this.transferTicket}); Transfer.fromJson(Map json) { fromMap(json); } fromMap(Map json) { transferTicket = json['transferTicket']; return this; } Map toJson() => { 'transferTicket': transferTicket }; getTypeName() => "Transfer"; TypeContext? context = _ctx; } /** * 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. */ // @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.") class Transfers implements IConvertible { /** * Contains information on all data deliveries, including deliveries that have not been confirmed by the server. */ // @ApiMember(Description="Contains information on all data deliveries, including deliveries that have not been confirmed by the server.") List? transferList; Transfers({this.transferList}); Transfers.fromJson(Map json) { fromMap(json); } fromMap(Map json) { transferList = JsonConverters.fromJson(json['transferList'],'List',context!); return this; } Map toJson() => { 'transferList': JsonConverters.toJson(transferList,'List',context!) }; getTypeName() => "Transfers"; TypeContext? context = _ctx; } /** * Represents value of an index field, which identfies the context about an error message. */ // @Api(Description="Represents value of an index field, which identfies the context about an error message.") class SemantischerIndex implements IConvertible { /** * The name of the index field. */ // @ApiMember(Description="The name of the index field.") String? name; /** * The value of the index field. */ // @ApiMember(Description="The value of the index field.") String? value; SemantischerIndex({this.name,this.value}); SemantischerIndex.fromJson(Map json) { fromMap(json); } fromMap(Map json) { name = json['name']; value = json['value']; return this; } Map toJson() => { 'name': name, 'value': value }; getTypeName() => "SemantischerIndex"; TypeContext? context = _ctx; } /** * Represents information on an ERiC reference. */ // @Api(Description="Represents information on an ERiC reference.") class FehlerRegelpruefung implements IConvertible { /** * The user data ticket of the reference. */ // @ApiMember(Description="The user data ticket of the reference.") String? nutzdatenticket; /** * The field identifier of the reference. */ // @ApiMember(Description="The field identifier of the reference.") String? feldidentifikator; /** * The multi-line index of the reference. */ // @ApiMember(Description="The multi-line index of the reference.") String? mehrfachzeilenindex; /** * The delivery number form of the reference. */ // @ApiMember(Description="The delivery number form of the reference.") String? lfdNrVordruck; /** * Indicates the line number of the error field mentioned in the form. */ // @ApiMember(Description="Indicates the line number of the error field mentioned in the form.") String? vordruckZeilennummer; /** * Specifies the value of one or more index fields that identify the context of error messages. */ // @ApiMember(Description="Specifies the value of one or more index fields that identify the context of error messages.") List? semantischeIndexes; /** * The sub-subject-area of the reference. */ // @ApiMember(Description="The sub-subject-area of the reference.") String? untersachbereich; /** * The private identification number of the reference. */ // @ApiMember(Description="The private identification number of the reference.") String? privateKennnummer; /** * The name of the rule that applies to the reference. */ // @ApiMember(Description="The name of the rule that applies to the reference.") String? regelName; /** * The technical error identifier of the reference. */ // @ApiMember(Description="The technical error identifier of the reference.") String? fachlicheFehlerId; /** * The textual details of the reference. */ // @ApiMember(Description="The textual details of the reference.") String? text; FehlerRegelpruefung({this.nutzdatenticket,this.feldidentifikator,this.mehrfachzeilenindex,this.lfdNrVordruck,this.vordruckZeilennummer,this.semantischeIndexes,this.untersachbereich,this.privateKennnummer,this.regelName,this.fachlicheFehlerId,this.text}); FehlerRegelpruefung.fromJson(Map json) { fromMap(json); } fromMap(Map json) { nutzdatenticket = json['nutzdatenticket']; feldidentifikator = json['feldidentifikator']; mehrfachzeilenindex = json['mehrfachzeilenindex']; lfdNrVordruck = json['lfdNrVordruck']; vordruckZeilennummer = json['vordruckZeilennummer']; semantischeIndexes = JsonConverters.fromJson(json['semantischeIndexes'],'List',context!); untersachbereich = json['untersachbereich']; privateKennnummer = json['privateKennnummer']; regelName = json['regelName']; fachlicheFehlerId = json['fachlicheFehlerId']; text = json['text']; return this; } Map toJson() => { 'nutzdatenticket': nutzdatenticket, 'feldidentifikator': feldidentifikator, 'mehrfachzeilenindex': mehrfachzeilenindex, 'lfdNrVordruck': lfdNrVordruck, 'vordruckZeilennummer': vordruckZeilennummer, 'semantischeIndexes': JsonConverters.toJson(semantischeIndexes,'List',context!), 'untersachbereich': untersachbereich, 'privateKennnummer': privateKennnummer, 'regelName': regelName, 'fachlicheFehlerId': fachlicheFehlerId, 'text': text }; getTypeName() => "FehlerRegelpruefung"; TypeContext? context = _ctx; } class Hinweis implements IConvertible { /** * The user data ticket of the reference. */ // @ApiMember(Description="The user data ticket of the reference.") String? nutzdatenticket; /** * The field identifier of the reference. */ // @ApiMember(Description="The field identifier of the reference.") String? feldidentifikator; /** * The multi-line index of the reference. */ // @ApiMember(Description="The multi-line index of the reference.") String? mehrfachzeilenindex; /** * The delivery number form of the reference. */ // @ApiMember(Description="The delivery number form of the reference.") String? lfdNrVordruck; /** * Indicates the line number of the error field mentioned in the form. */ // @ApiMember(Description="Indicates the line number of the error field mentioned in the form.") String? vordruckZeilennummer; /** * Specifies the value of one or more index fields that identify the context of error messages. */ // @ApiMember(Description="Specifies the value of one or more index fields that identify the context of error messages.") List? semantischeIndexes; /** * The sub-subject-area of the reference. */ // @ApiMember(Description="The sub-subject-area of the reference.") String? untersachbereich; /** * The private identification number of the reference. */ // @ApiMember(Description="The private identification number of the reference.") String? privateKennnummer; /** * The name of the rule that applies to the reference. */ // @ApiMember(Description="The name of the rule that applies to the reference.") String? regelName; /** * The technical note identifier of the reference. */ // @ApiMember(Description="The technical note identifier of the reference.") String? fachlicheHinweisId; /** * The textual details of the reference. */ // @ApiMember(Description="The textual details of the reference.") String? text; Hinweis({this.nutzdatenticket,this.feldidentifikator,this.mehrfachzeilenindex,this.lfdNrVordruck,this.vordruckZeilennummer,this.semantischeIndexes,this.untersachbereich,this.privateKennnummer,this.regelName,this.fachlicheHinweisId,this.text}); Hinweis.fromJson(Map json) { fromMap(json); } fromMap(Map json) { nutzdatenticket = json['nutzdatenticket']; feldidentifikator = json['feldidentifikator']; mehrfachzeilenindex = json['mehrfachzeilenindex']; lfdNrVordruck = json['lfdNrVordruck']; vordruckZeilennummer = json['vordruckZeilennummer']; semantischeIndexes = JsonConverters.fromJson(json['semantischeIndexes'],'List',context!); untersachbereich = json['untersachbereich']; privateKennnummer = json['privateKennnummer']; regelName = json['regelName']; fachlicheHinweisId = json['fachlicheHinweisId']; text = json['text']; return this; } Map toJson() => { 'nutzdatenticket': nutzdatenticket, 'feldidentifikator': feldidentifikator, 'mehrfachzeilenindex': mehrfachzeilenindex, 'lfdNrVordruck': lfdNrVordruck, 'vordruckZeilennummer': vordruckZeilennummer, 'semantischeIndexes': JsonConverters.toJson(semantischeIndexes,'List',context!), 'untersachbereich': untersachbereich, 'privateKennnummer': privateKennnummer, 'regelName': regelName, 'fachlicheHinweisId': fachlicheHinweisId, 'text': text }; getTypeName() => "Hinweis"; TypeContext? context = _ctx; } /** * Represents a structure that contains the first output of the ERiC tax data submission process. */ // @Api(Description="Represents a structure that contains the first output of the ERiC tax data submission process.") class EricBearbeiteVorgang implements IConvertible { /** * Information from the successful processing a tax declaration. */ // @ApiMember(Description="Information from the successful processing a tax declaration.") Erfolg? erfolg; /** * Gets or sets information on all data deliveries, including deliveries that have not been confirmed by the server. */ // @ApiMember(Description="Gets or sets information on all data deliveries, including deliveries that have not been confirmed by the server.") Transfers? transfers; /** * Error rules that result from the processing of a tax declaration. */ // @ApiMember(Description="Error rules that result from the processing of a tax declaration.") List? fehlerRegelpruefungen; /** * Hints that result the processing of a tax declaration. */ // @ApiMember(Description="Hints that result the processing of a tax declaration.") List? hinweise; EricBearbeiteVorgang({this.erfolg,this.transfers,this.fehlerRegelpruefungen,this.hinweise}); EricBearbeiteVorgang.fromJson(Map json) { fromMap(json); } fromMap(Map json) { erfolg = JsonConverters.fromJson(json['erfolg'],'Erfolg',context!); transfers = JsonConverters.fromJson(json['transfers'],'Transfers',context!); fehlerRegelpruefungen = JsonConverters.fromJson(json['fehlerRegelpruefungen'],'List',context!); hinweise = JsonConverters.fromJson(json['hinweise'],'List',context!); return this; } Map toJson() => { 'erfolg': JsonConverters.toJson(erfolg,'Erfolg',context!), 'transfers': JsonConverters.toJson(transfers,'Transfers',context!), 'fehlerRegelpruefungen': JsonConverters.toJson(fehlerRegelpruefungen,'List',context!), 'hinweise': JsonConverters.toJson(hinweise,'List',context!) }; getTypeName() => "EricBearbeiteVorgang"; TypeContext? context = _ctx; } /** * Auflistung der gültigen Verfahren */ enum Verfahren { ElsterAnmeldung, ElsterBereitstellung, ElsterBilanz, ElsterBRM, ElsterBRMOrg, ElsterDatenabholung, ElsterErklaerung, ElsterExtern, ElsterFSE, ElsterKapESt, ElsterKMV, ElsterKontoabfrage, ElsterLavendel, ElsterLohn, ElsterLohn2, ElsterNachricht, ElsterSignatur, ElsterVollmachtDB, } /** * Hauptinformation ob die Daten authentifiziert wurden (send-Auth) oder nicht (send-NoSig) */ enum Vorgang { Send_Auth, Send_Auth_Part, Send_NoSig, Send_NoSig_Part, } /** * 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. */ enum Testmerker { TM010000001, TM080000001, TM160000001, TM160000002, TM220000000, TM220002000, TM230000001, TM240000000, TM370000001, TM520000000, TM700000001, TM700000004, } /** * Represents the signature and associated information of the compressed, encrypted, base64-encoded content of the data part of the tax declaration/statement. */ // @Api(Description="Represents the signature and associated information of the compressed, encrypted, base64-encoded content of the data part of the tax declaration/statement.") class SigUser implements IConvertible { /** * The content of the data. Currently supported: Raw XML (text), XElement or IXmlSerializable */ // @ApiMember(Description="The content of the data. Currently supported: Raw XML (text), XElement or IXmlSerializable") dynamic? inhalt; SigUser({this.inhalt}); SigUser.fromJson(Map json) { fromMap(json); } fromMap(Map json) { inhalt = JsonConverters.fromJson(json['inhalt'],'dynamic',context!); return this; } Map toJson() => { 'inhalt': JsonConverters.toJson(inhalt,'dynamic',context!) }; getTypeName() => "SigUser"; TypeContext? context = _ctx; } /** * Einheitliche Abkürzungen fuer die Bundesländer bzw. alternative Empfänger */ enum Bundesland { BW, BY, BE, BB, HB, HH, HE, MV, NI, NW, RP, SL, SN, ST, SH, TH, EC, BF, CS, CD, CM, CN, DS, OP, TK, ZF, } /** * Represents a receiver of tax data. */ // @Api(Description="Represents a receiver of tax data.") class Empfaenger implements IConvertible { /** * The identifier of the receiver. */ // @ApiMember(Description="The identifier of the receiver.") String? id; /** * The destination of the receiver. */ // @ApiMember(Description="The destination of the receiver.") Bundesland? ziel; Empfaenger({this.id,this.ziel}); Empfaenger.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; ziel = JsonConverters.fromJson(json['ziel'],'Bundesland',context!); return this; } Map toJson() => { 'id': id, 'ziel': JsonConverters.toJson(ziel,'Bundesland',context!) }; getTypeName() => "Empfaenger"; TypeContext? context = _ctx; } /** * 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 */ enum Verschluesselungsart { PKCS_7v1_5, PKCS_7v1_5enveloped, NO_BASE64, CMSEncryptedData, CMSEnvelopedData, EnvelopedData__RSA_OAEP__AES_128__GZip__B64, } /** * Mit welcher Kompression wurden die Inhalte von den Elementen DatenLieferant und ggf. SigUser im TransferHeader und dem Element DatenTeil komprimiert. */ enum Kompression { GZIP, NO_BASE64, } /** * [Documentation unavailable] */ // @Api(Description="[Documentation unavailable]") class EricTyp implements IConvertible { /** * The content of the data. Currently supported: Raw XML (text), XmlElement, XElement or IXmlSerializable */ // @ApiMember(Description="The content of the data. Currently supported: Raw XML (text), XmlElement, XElement or IXmlSerializable") dynamic? inhalt; EricTyp({this.inhalt}); EricTyp.fromJson(Map json) { fromMap(json); } fromMap(Map json) { inhalt = JsonConverters.fromJson(json['inhalt'],'dynamic',context!); return this; } Map toJson() => { 'inhalt': JsonConverters.toJson(inhalt,'dynamic',context!) }; getTypeName() => "EricTyp"; TypeContext? context = _ctx; } /** * [Documentation unavailable] */ // @Api(Description="[Documentation unavailable]") class Erstellung implements IConvertible { /** * [Documentation unavailable] */ // @ApiMember(Description="[Documentation unavailable]") EricTyp? eric; Erstellung({this.eric}); Erstellung.fromJson(Map json) { fromMap(json); } fromMap(Map json) { eric = JsonConverters.fromJson(json['eric'],'EricTyp',context!); return this; } Map toJson() => { 'eric': JsonConverters.toJson(eric,'EricTyp',context!) }; getTypeName() => "Erstellung"; TypeContext? context = _ctx; } /** * Represents information on the encryption of tax data. */ // @Api(Description="Represents information on the encryption of tax data.") class Datei implements IConvertible { /** * The type of data encryption used. */ // @ApiMember(Description="The type of data encryption used.") Verschluesselungsart? verschluesselung; /** * The type of data compression used. */ // @ApiMember(Description="The type of data compression used.") Kompression? kompression; /** * The transport key used in the encryption. */ // @ApiMember(Description="The transport key used in the encryption.") String? transportSchluessel; /** * [Documentation unavailable] */ // @ApiMember(Description="[Documentation unavailable]") Erstellung? erstellung; Datei({this.verschluesselung,this.kompression,this.transportSchluessel,this.erstellung}); Datei.fromJson(Map json) { fromMap(json); } fromMap(Map json) { verschluesselung = JsonConverters.fromJson(json['verschluesselung'],'Verschluesselungsart',context!); kompression = JsonConverters.fromJson(json['kompression'],'Kompression',context!); transportSchluessel = json['transportSchluessel']; erstellung = JsonConverters.fromJson(json['erstellung'],'Erstellung',context!); return this; } Map toJson() => { 'verschluesselung': JsonConverters.toJson(verschluesselung,'Verschluesselungsart',context!), 'kompression': JsonConverters.toJson(kompression,'Kompression',context!), 'transportSchluessel': transportSchluessel, 'erstellung': JsonConverters.toJson(erstellung,'Erstellung',context!) }; getTypeName() => "Datei"; TypeContext? context = _ctx; } /** * Represents an external error stack. */ // @Api(Description="Represents an external error stack.") class Rueckgabe implements IConvertible { /** * The external error code. Either a zero (0) if no external errors occurred; otherwise an error number. */ // @ApiMember(Description="The external error code. Either a zero (0) if no external errors occurred; otherwise an error number.") String? code; /** * The external error message. */ // @ApiMember(Description="The external error message.") String? text; Rueckgabe({this.code,this.text}); Rueckgabe.fromJson(Map json) { fromMap(json); } fromMap(Map json) { code = json['code']; text = json['text']; return this; } Map toJson() => { 'code': code, 'text': text }; getTypeName() => "Rueckgabe"; TypeContext? context = _ctx; } /** * Represents an internal error stack. */ // @Api(Description="Represents an internal error stack.") class Stack implements IConvertible { /** * The internal error code. Either a zero (0) if no internal errors occurred; otherwise an error number. */ // @ApiMember(Description="The internal error code. Either a zero (0) if no internal errors occurred; otherwise an error number.") String? code; /** * The external error message. */ // @ApiMember(Description="The external error message.") String? text; Stack({this.code,this.text}); Stack.fromJson(Map json) { fromMap(json); } fromMap(Map json) { code = json['code']; text = json['text']; return this; } Map toJson() => { 'code': code, 'text': text }; getTypeName() => "Stack"; TypeContext? context = _ctx; } /** * Represents an ERiC return code. */ // @Api(Description="Represents an ERiC return code.") class RC implements IConvertible { /** * The return value of the return code. */ // @ApiMember(Description="The return value of the return code.") Rueckgabe? rueckgabe; /** * The internal value of the return code. */ // @ApiMember(Description="The internal value of the return code.") Stack? stack; RC({this.rueckgabe,this.stack}); RC.fromJson(Map json) { fromMap(json); } fromMap(Map json) { rueckgabe = JsonConverters.fromJson(json['rueckgabe'],'Rueckgabe',context!); stack = JsonConverters.fromJson(json['stack'],'Stack',context!); return this; } Map toJson() => { 'rueckgabe': JsonConverters.toJson(rueckgabe,'Rueckgabe',context!), 'stack': JsonConverters.toJson(stack,'Stack',context!) }; getTypeName() => "RC"; TypeContext? context = _ctx; } /** * Represents an ERiC extension. */ // @Api(Description="Represents an ERiC extension.") class Zusatz implements IConvertible { /** * The user-customizable items for the extension. Data providers can use these items for their own extensions/information. */ // @ApiMember(Description="The user-customizable items for the extension. Data providers can use these items for their own extensions/information.") List? infos; /** * 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). */ // @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).") List? elsterInfos; Zusatz({this.infos,this.elsterInfos}); Zusatz.fromJson(Map json) { fromMap(json); } fromMap(Map json) { infos = JsonConverters.fromJson(json['infos'],'List',context!); elsterInfos = JsonConverters.fromJson(json['elsterInfos'],'List',context!); return this; } Map toJson() => { 'infos': JsonConverters.toJson(infos,'List',context!), 'elsterInfos': JsonConverters.toJson(elsterInfos,'List',context!) }; getTypeName() => "Zusatz"; TypeContext? context = _ctx; } /** * Represents the transfer header part of an ELSTER document. */ // @Api(Description="Represents the transfer header part of an ELSTER document.") class TransferHeader implements IConvertible { /** * The version of the transfer header. */ // @ApiMember(Description="The version of the transfer header.", IsRequired=true) String? version; /** * The tax operation used in the ELSTER process. */ // @ApiMember(Description="The tax operation used in the ELSTER process.", IsRequired=true) Verfahren? verfahren; /** * The tax data type of the ELSTER process. */ // @ApiMember(Description="The tax data type of the ELSTER process.", IsRequired=true) Datenart? datenArt; /** * The authentification procedure of the ELSTER process. */ // @ApiMember(Description="The authentification procedure of the ELSTER process.", IsRequired=true) Vorgang? vorgang; /** * The ticket identifier after a successful ELSTER process. */ // @ApiMember(Description="The ticket identifier after a successful ELSTER process.") String? transferTicket; /** * 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 flag that indicates whether the tax declaration or filing is a test case. For production purposes, this value should not be set.") Testmerker? testmerker; /** * 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 signature and associated information on the compressed, encrypted, base64-encoded content of the the data part of a tax declaration / statement.") SigUser? sigUser; /** * The receiving ELSTER server. */ // @ApiMember(Description="The receiving ELSTER server.") Empfaenger? empfaenger; /** * The identifier of the software manufacturer, through whose software the tax declaration is filed. */ // @ApiMember(Description="The identifier of the software manufacturer, through whose software the tax declaration is filed.", IsRequired=true) String? herstellerID; /** * The details of the provider that submits tax data. */ // @ApiMember(Description="The details of the provider that submits tax data.", IsRequired=true) String? datenLieferant; /** * The date of receipt of the tax data. */ // @ApiMember(Description="The date of receipt of the tax data.") DateTime? eingangsDatum; /** * The encryption data required for authenticated transmission of tax data. */ // @ApiMember(Description="The encryption data required for authenticated transmission of tax data.") Datei? datei; /** * 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 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? rc; /** * The details of the software that submits the tax data. */ // @ApiMember(Description="The details of the software that submits the tax data.") String? versionClient; /** * Data extensions to the transfer header. */ // @ApiMember(Description="Data extensions to the transfer header.") Zusatz? zusatz; TransferHeader({this.version,this.verfahren,this.datenArt,this.vorgang,this.transferTicket,this.testmerker,this.sigUser,this.empfaenger,this.herstellerID,this.datenLieferant,this.eingangsDatum,this.datei,this.rc,this.versionClient,this.zusatz}); TransferHeader.fromJson(Map json) { fromMap(json); } fromMap(Map json) { version = json['version']; verfahren = JsonConverters.fromJson(json['verfahren'],'Verfahren',context!); datenArt = JsonConverters.fromJson(json['datenArt'],'Datenart',context!); vorgang = JsonConverters.fromJson(json['vorgang'],'Vorgang',context!); transferTicket = json['transferTicket']; testmerker = JsonConverters.fromJson(json['testmerker'],'Testmerker',context!); sigUser = JsonConverters.fromJson(json['sigUser'],'SigUser',context!); empfaenger = JsonConverters.fromJson(json['empfaenger'],'Empfaenger',context!); herstellerID = json['herstellerID']; datenLieferant = json['datenLieferant']; eingangsDatum = JsonConverters.fromJson(json['eingangsDatum'],'DateTime',context!); datei = JsonConverters.fromJson(json['datei'],'Datei',context!); rc = JsonConverters.fromJson(json['rc'],'RC',context!); versionClient = json['versionClient']; zusatz = JsonConverters.fromJson(json['zusatz'],'Zusatz',context!); return this; } Map toJson() => { 'version': version, 'verfahren': JsonConverters.toJson(verfahren,'Verfahren',context!), 'datenArt': JsonConverters.toJson(datenArt,'Datenart',context!), 'vorgang': JsonConverters.toJson(vorgang,'Vorgang',context!), 'transferTicket': transferTicket, 'testmerker': JsonConverters.toJson(testmerker,'Testmerker',context!), 'sigUser': JsonConverters.toJson(sigUser,'SigUser',context!), 'empfaenger': JsonConverters.toJson(empfaenger,'Empfaenger',context!), 'herstellerID': herstellerID, 'datenLieferant': datenLieferant, 'eingangsDatum': JsonConverters.toJson(eingangsDatum,'DateTime',context!), 'datei': JsonConverters.toJson(datei,'Datei',context!), 'rc': JsonConverters.toJson(rc,'RC',context!), 'versionClient': versionClient, 'zusatz': JsonConverters.toJson(zusatz,'Zusatz',context!) }; getTypeName() => "TransferHeader"; TypeContext? context = _ctx; } /** * Represents a receriver ID */ enum EmpfaengerID { L, F, } /** * Represents a receiver of tax data. */ // @Api(Description="Represents a receiver of tax data.") class NDHEmpfaenger implements IConvertible { /** * The identifier of the receiver. */ // @ApiMember(Description="The identifier of the receiver.") EmpfaengerID? id; /** * The value of the receiver. */ // @ApiMember(Description="The value of the receiver.") String? value; NDHEmpfaenger({this.id,this.value}); NDHEmpfaenger.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = JsonConverters.fromJson(json['id'],'EmpfaengerID',context!); value = json['value']; return this; } Map toJson() => { 'id': JsonConverters.toJson(id,'EmpfaengerID',context!), 'value': value }; getTypeName() => "NDHEmpfaenger"; TypeContext? context = _ctx; } /** * Represents a manufacturer/vendor of tax software. */ // @Api(Description="Represents a manufacturer/vendor of tax software.") class Hersteller implements IConvertible { /** * The product name of the tax software produced by the manufacturer. */ // @ApiMember(Description="The product name of the tax software produced by the manufacturer.") String? produktName; /** * The product version of the tax software produced by the manufacturer. */ // @ApiMember(Description="The product version of the tax software produced by the manufacturer.") String? produktVersion; Hersteller({this.produktName,this.produktVersion}); Hersteller.fromJson(Map json) { fromMap(json); } fromMap(Map json) { produktName = json['produktName']; produktVersion = json['produktVersion']; return this; } Map toJson() => { 'produktName': produktName, 'produktVersion': produktVersion }; getTypeName() => "Hersteller"; TypeContext? context = _ctx; } /** * Represents the header of a tax data. */ // @Api(Description="Represents the header of a tax data.") class NutzdatenHeader implements IConvertible { /** * The version of the header. */ // @ApiMember(Description="The version of the header.", IsRequired=true) String? version; /** * The ticket identifier of the header. */ // @ApiMember(Description="The ticket identifier of the header.", IsRequired=true) String? nutzdatenTicket; /** * The receiver of the header. */ // @ApiMember(Description="The receiver of the header.", IsRequired=true) NDHEmpfaenger? empfaenger; /** * The software manufacturer, through whose software the tax declaration or filing is submitted. */ // @ApiMember(Description="The software manufacturer, through whose software the tax declaration or filing is submitted.", IsRequired=true) Hersteller? hersteller; /** * 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 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.") String? datenLieferant; /** * The return code of the header. */ // @ApiMember(Description="The return code of the header.") RC? rc; /** * The data extensions of the header. */ // @ApiMember(Description="The data extensions of the header.") Zusatz? zusatz; NutzdatenHeader({this.version,this.nutzdatenTicket,this.empfaenger,this.hersteller,this.datenLieferant,this.rc,this.zusatz}); NutzdatenHeader.fromJson(Map json) { fromMap(json); } fromMap(Map json) { version = json['version']; nutzdatenTicket = json['nutzdatenTicket']; empfaenger = JsonConverters.fromJson(json['empfaenger'],'NDHEmpfaenger',context!); hersteller = JsonConverters.fromJson(json['hersteller'],'Hersteller',context!); datenLieferant = json['datenLieferant']; rc = JsonConverters.fromJson(json['rc'],'RC',context!); zusatz = JsonConverters.fromJson(json['zusatz'],'Zusatz',context!); return this; } Map toJson() => { 'version': version, 'nutzdatenTicket': nutzdatenTicket, 'empfaenger': JsonConverters.toJson(empfaenger,'NDHEmpfaenger',context!), 'hersteller': JsonConverters.toJson(hersteller,'Hersteller',context!), 'datenLieferant': datenLieferant, 'rc': JsonConverters.toJson(rc,'RC',context!), 'zusatz': JsonConverters.toJson(zusatz,'Zusatz',context!) }; getTypeName() => "NutzdatenHeader"; TypeContext? context = _ctx; } /** * Represents an encapsulation of tax data content. */ // @Api(Description="Represents an encapsulation of tax data content.") class Nutzdaten implements IConvertible { /** * The content of the tax data. This varies by tax declaration. Currently supported formats: Raw XML (text), XElement, and IXmlSerializable */ // @ApiMember(Description="The content of the tax data. This varies by tax declaration. Currently supported formats: Raw XML (text), XElement, and IXmlSerializable", IsRequired=true) dynamic? inhalt; Nutzdaten({this.inhalt}); Nutzdaten.fromJson(Map json) { fromMap(json); } fromMap(Map json) { inhalt = JsonConverters.fromJson(json['inhalt'],'dynamic',context!); return this; } Map toJson() => { 'inhalt': JsonConverters.toJson(inhalt,'dynamic',context!) }; getTypeName() => "Nutzdaten"; TypeContext? context = _ctx; } /** * Represents a block of tax data. */ // @Api(Description="Represents a block of tax data.") class Nutzdatenblock implements IConvertible { /** * The header part of the block. */ // @ApiMember(Description="The header part of the block.", IsRequired=true) NutzdatenHeader? nutzdatenHeader; /** * The data part of the block. */ // @ApiMember(Description="The data part of the block.", IsRequired=true) Nutzdaten? nutzdaten; Nutzdatenblock({this.nutzdatenHeader,this.nutzdaten}); Nutzdatenblock.fromJson(Map json) { fromMap(json); } fromMap(Map json) { nutzdatenHeader = JsonConverters.fromJson(json['nutzdatenHeader'],'NutzdatenHeader',context!); nutzdaten = JsonConverters.fromJson(json['nutzdaten'],'Nutzdaten',context!); return this; } Map toJson() => { 'nutzdatenHeader': JsonConverters.toJson(nutzdatenHeader,'NutzdatenHeader',context!), 'nutzdaten': JsonConverters.toJson(nutzdaten,'Nutzdaten',context!) }; getTypeName() => "Nutzdatenblock"; TypeContext? context = _ctx; } /** * Represents the data part of an ELSTER document. */ // @Api(Description="Represents the data part of an ELSTER document.") class DatenTeil implements IConvertible { /** * The blocks of tax data of the ELSTER document. */ // @ApiMember(Description="The blocks of tax data of the ELSTER document.", IsRequired=true) List? nutzdatenbloecke; DatenTeil({this.nutzdatenbloecke}); DatenTeil.fromJson(Map json) { fromMap(json); } fromMap(Map json) { nutzdatenbloecke = JsonConverters.fromJson(json['nutzdatenbloecke'],'List',context!); return this; } Map toJson() => { 'nutzdatenbloecke': JsonConverters.toJson(nutzdatenbloecke,'List',context!) }; getTypeName() => "DatenTeil"; TypeContext? context = _ctx; } /** * Represents an ELSTER document. */ // @Api(Description="Represents an ELSTER document.") class Elster implements IConvertible { /** * The transfer header part of the ELSTER document. */ // @ApiMember(Description="The transfer header part of the ELSTER document.", IsRequired=true) TransferHeader? transferHeader; /** * The data (facts) part of the ELSTER document. */ // @ApiMember(Description="The data (facts) part of the ELSTER document.") DatenTeil? datenTeil; Elster({this.transferHeader,this.datenTeil}); Elster.fromJson(Map json) { fromMap(json); } fromMap(Map json) { transferHeader = JsonConverters.fromJson(json['transferHeader'],'TransferHeader',context!); datenTeil = JsonConverters.fromJson(json['datenTeil'],'DatenTeil',context!); return this; } Map toJson() => { 'transferHeader': JsonConverters.toJson(transferHeader,'TransferHeader',context!), 'datenTeil': JsonConverters.toJson(datenTeil,'DatenTeil',context!) }; getTypeName() => "Elster"; TypeContext? context = _ctx; } /** * Represents a base class for a file with raw data. */ // @Api(Description="Represents a base class for a file with raw data.") abstract class FileBase { /** * The raw data content of the file. */ // @ApiMember(Description="The raw data content of the file.", Name="Content") Uint8List? content; FileBase({this.content}); FileBase.fromJson(Map json) { fromMap(json); } fromMap(Map json) { content = JsonConverters.fromJson(json['content'],'Uint8List',context!); return this; } Map toJson() => { 'content': JsonConverters.toJson(content,'Uint8List',context!) }; getTypeName() => "FileBase"; TypeContext? context = _ctx; } /** * Represents information about a file or directory. */ // @Api(Description="Represents information about a file or directory.") class FileMetadata implements IFileMetadata, IConvertible { /** * 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 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="Name") String? name; /** * The full path of the directory or file. */ // @ApiMember(Description="The full path of the directory or file.", Name="FullName") String? fullName; /** * The time the current file or directory was last accessed. */ // @ApiMember(Description="The time the current file or directory was last accessed.", Name="LastAccessTime") DateTime? lastAccessTime; /** * The name of the file. */ // @ApiMember(Description="The name of the file.", Name="LastAccessTimeUtc") DateTime? lastAccessTimeUtc; /** * The time when the current file or directory was last written to. */ // @ApiMember(Description="The time when the current file or directory was last written to.", Name="LastAccessTime") DateTime? lastWriteTime; /** * The time, in coordinated universal time (UTC), 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.", Name="LastWriteTimeUtc") DateTime? lastWriteTimeUtc; /** * The size, in bytes, of the current file. */ // @ApiMember(Description="The size, in bytes, of the current file.", Name="Length") int? length; /** * The size, in bytes, of the current file. */ // @ApiMember(Description="The size, in bytes, of the current file.", Name="UserId") int? userId; /** * The file group id. */ // @ApiMember(Description="The file group id.", Name="GroupId") int? groupId; /** * A value that indicates whether the others can read from this file. */ // @ApiMember(Description="A value that indicates whether the others can read from this file.", Name="OthersCanRead") bool? othersCanRead; /** * A value that indicates whether the group members can execute this file. */ // @ApiMember(Description="A value that indicates whether the group members can execute this file.", Name="GroupCanExecute") bool? groupCanExecute; /** * A value that indicates whether the group members can write into this file. */ // @ApiMember(Description="A value that indicates whether the group members can write into this file.", Name="GroupCanWrite") bool? groupCanWrite; /** * A value that indicates whether the group members can read from this file. */ // @ApiMember(Description="A value that indicates whether the group members can read from this file.", Name="GroupCanRead") bool? groupCanRead; /** * A value that indicates whether the owner can execute this file. */ // @ApiMember(Description="A value that indicates whether the owner can execute this file.", Name="OwnerCanExecute") bool? ownerCanExecute; /** * A value that indicates whether the owner can write into this file. */ // @ApiMember(Description="A value that indicates whether the owner can write into this file.", Name="OwnerCanWrite") bool? ownerCanWrite; /** * A value that indicates whether the owner can read from this file. */ // @ApiMember(Description="A value that indicates whether the owner can read from this file.", Name="OthersCanRead") bool? ownerCanRead; /** * A value that indicates whether others can read from this file. */ // @ApiMember(Description="A value that indicates whether others can read from this file.", Name="OthersCanExecute") bool? othersCanExecute; /** * A value that indicates whether others can write into this file. */ // @ApiMember(Description="A value that indicates whether others can write into this file.", Name="OthersCanWrite") bool? othersCanWrite; /** * Extensions to the file attributes. */ // @ApiMember(Description="Extensions to the file attributes.", Name="Extensions") Map? extensions; FileMetadata({this.name,this.fullName,this.lastAccessTime,this.lastAccessTimeUtc,this.lastWriteTime,this.lastWriteTimeUtc,this.length,this.userId,this.groupId,this.othersCanRead,this.groupCanExecute,this.groupCanWrite,this.groupCanRead,this.ownerCanExecute,this.ownerCanWrite,this.ownerCanRead,this.othersCanExecute,this.othersCanWrite,this.extensions}); FileMetadata.fromJson(Map json) { fromMap(json); } fromMap(Map json) { name = json['name']; fullName = json['fullName']; lastAccessTime = JsonConverters.fromJson(json['lastAccessTime'],'DateTime',context!); lastAccessTimeUtc = JsonConverters.fromJson(json['lastAccessTimeUtc'],'DateTime',context!); lastWriteTime = JsonConverters.fromJson(json['lastWriteTime'],'DateTime',context!); lastWriteTimeUtc = JsonConverters.fromJson(json['lastWriteTimeUtc'],'DateTime',context!); length = json['length']; userId = json['userId']; groupId = json['groupId']; othersCanRead = json['othersCanRead']; groupCanExecute = json['groupCanExecute']; groupCanWrite = json['groupCanWrite']; groupCanRead = json['groupCanRead']; ownerCanExecute = json['ownerCanExecute']; ownerCanWrite = json['ownerCanWrite']; ownerCanRead = json['ownerCanRead']; othersCanExecute = json['othersCanExecute']; othersCanWrite = json['othersCanWrite']; extensions = JsonConverters.toStringMap(json['extensions']); return this; } Map toJson() => { 'name': name, 'fullName': fullName, 'lastAccessTime': JsonConverters.toJson(lastAccessTime,'DateTime',context!), 'lastAccessTimeUtc': JsonConverters.toJson(lastAccessTimeUtc,'DateTime',context!), 'lastWriteTime': JsonConverters.toJson(lastWriteTime,'DateTime',context!), 'lastWriteTimeUtc': JsonConverters.toJson(lastWriteTimeUtc,'DateTime',context!), 'length': length, 'userId': userId, 'groupId': groupId, 'othersCanRead': othersCanRead, 'groupCanExecute': groupCanExecute, 'groupCanWrite': groupCanWrite, 'groupCanRead': groupCanRead, 'ownerCanExecute': ownerCanExecute, 'ownerCanWrite': ownerCanWrite, 'ownerCanRead': ownerCanRead, 'othersCanExecute': othersCanExecute, 'othersCanWrite': othersCanWrite, 'extensions': extensions }; getTypeName() => "FileMetadata"; TypeContext? context = _ctx; } /** * Represents a file that contains raw data content in bytes */ // @Api(Description="Represents a file that contains raw data content in bytes") class BinaryFile extends FileBase implements IConvertible { /** * The attributes of the file. */ // @ApiMember(Description="The attributes of the file.", Name="Metadata") FileMetadata? metadata; /** * The name of the file without information on its directory path. */ // @ApiMember(Description="The name of the file without information on its directory path.", Name="Name") String? name; /** * The raw data content of the file. */ // @ApiMember(Description="The raw data content of the file.", Name="Content") Uint8List? content; BinaryFile({this.metadata,this.name,this.content}); BinaryFile.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); metadata = JsonConverters.fromJson(json['metadata'],'FileMetadata',context!); name = json['name']; content = JsonConverters.fromJson(json['content'],'Uint8List',context!); return this; } Map toJson() => super.toJson()..addAll({ 'metadata': JsonConverters.toJson(metadata,'FileMetadata',context!), 'name': name, 'content': JsonConverters.toJson(content,'Uint8List',context!) }); getTypeName() => "BinaryFile"; TypeContext? context = _ctx; } abstract class IFileMetadata { String? name; String? fullName; DateTime? lastAccessTime; DateTime? lastAccessTimeUtc; DateTime? lastWriteTime; DateTime? lastWriteTimeUtc; int? length; int? userId; int? groupId; bool? groupCanExecute; bool? groupCanWrite; bool? groupCanRead; bool? ownerCanRead; bool? ownerCanExecute; bool? ownerCanWrite; bool? othersCanRead; bool? othersCanExecute; bool? othersCanWrite; Map? extensions; } /** * A type that encapsulates the return values from the ERiC API function that processes tax data. */ // @Api(Description="A type that encapsulates the return values from the ERiC API function that processes tax data.") class BearbeiteVorgangResponse extends EricFehlerCodeResponse implements IConvertible { /** * The return value of the process. */ // @ApiMember(Description="The return value of the process.") EricBearbeiteVorgang? rueckgabe; /** * The server response of the process. */ // @ApiMember(Description="The server response of the process.") Elster? serverantwort; /** * If available, the PDF-based files to represent generated transfer prototocols. */ // @ApiMember(Description="If available, the PDF-based files to represent generated transfer prototocols.") List? transferProtocols; /** * The status code that the ERiC API function returns. */ // @ApiMember(Description="The status code that the ERiC API function returns.", Name="StatusCode") EricFehlerCode? statusCode; /** * The status message that the ERiC API function returns. */ // @ApiMember(Description="The status message that the ERiC API function returns.", Name="StatusText") String? statusText; /** * The unique identifier of the response. */ // @ApiMember(Description="The unique identifier of the response.", Name="Id") String? id; /** * The position of the response element in an indexed collection. */ // @ApiMember(Description="The position of the response element in an indexed collection.", Name="Index") int? index; /** * Metadata that contains structured error information on the service response. */ // @ApiMember(Description="Metadata that contains structured error information on the service response.", Name="ResponseStatus") ResponseStatus? responseStatus; BearbeiteVorgangResponse({this.rueckgabe,this.serverantwort,this.transferProtocols,this.statusCode,this.statusText,this.id,this.index,this.responseStatus}); BearbeiteVorgangResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); rueckgabe = JsonConverters.fromJson(json['rueckgabe'],'EricBearbeiteVorgang',context!); serverantwort = JsonConverters.fromJson(json['serverantwort'],'Elster',context!); transferProtocols = JsonConverters.fromJson(json['transferProtocols'],'List',context!); statusCode = JsonConverters.fromJson(json['statusCode'],'EricFehlerCode',context!); statusText = json['statusText']; id = json['id']; index = json['index']; responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); return this; } Map toJson() => super.toJson()..addAll({ 'rueckgabe': JsonConverters.toJson(rueckgabe,'EricBearbeiteVorgang',context!), 'serverantwort': JsonConverters.toJson(serverantwort,'Elster',context!), 'transferProtocols': JsonConverters.toJson(transferProtocols,'List',context!), 'statusCode': JsonConverters.toJson(statusCode,'EricFehlerCode',context!), 'statusText': statusText, 'id': id, 'index': index, 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!) }); getTypeName() => "BearbeiteVorgangResponse"; TypeContext? context = _ctx; } /** * A synchronous service to validate and send tax data. */ // @Route("/ValidiereUndSende", "POST") // @Api(Description="A synchronous service to validate and send tax data.") class ValidiereUndSende extends ValidiereUndSendeBase implements IReturn, IConvertible, IPost { /** * Name prefix of the generated transfer protocol file. */ // @ApiMember(Description="Name prefix of the generated transfer protocol file.", Name="ProtocolPrefix") String? protocolPrefix; /** * Footer text to be used on the printout (optional). */ // @ApiMember(Description="Footer text to be used on the printout (optional).", Name="FussText") String? fussText; /** * 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="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") bool? duplexDruck; /** * The details of the provider that submits tax data. */ // @ApiMember(Description="The details of the provider that submits tax data.", Name="DatenLieferant") String? datenLieferant; /** * The tax data to process. */ // @ApiMember(Description="The tax data to process.", Name="Data") TaxData? data; ValidiereUndSende({this.protocolPrefix,this.fussText,this.duplexDruck,this.datenLieferant,this.data}); ValidiereUndSende.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); protocolPrefix = json['protocolPrefix']; fussText = json['fussText']; duplexDruck = json['duplexDruck']; datenLieferant = json['datenLieferant']; data = JsonConverters.fromJson(json['data'],'TaxData',context!); return this; } Map toJson() => super.toJson()..addAll({ 'protocolPrefix': protocolPrefix, 'fussText': fussText, 'duplexDruck': duplexDruck, 'datenLieferant': datenLieferant, 'data': JsonConverters.toJson(data,'TaxData',context!) }); createResponse() => BearbeiteVorgangResponse(); getResponseTypeName() => "BearbeiteVorgangResponse"; getTypeName() => "ValidiereUndSende"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'taxfiling.pwc.de', types: { 'TaxData': TypeInfo(TypeOf.Class, create:() => TaxData()), 'BearbeiteVorgangBase': TypeInfo(TypeOf.AbstractClass), 'IDruckRequest': TypeInfo(TypeOf.Interface), 'ISendeRequest': TypeInfo(TypeOf.Interface), 'ValidiereUndSendeBase': TypeInfo(TypeOf.AbstractClass), 'Datenart': TypeInfo(TypeOf.Enum, enumValues:Datenart.values), 'EricFehlerCode': TypeInfo(TypeOf.Enum, enumValues:EricFehlerCode.values), 'ServiceReponseBase': TypeInfo(TypeOf.AbstractClass), 'EricFehlerCodeResponse': TypeInfo(TypeOf.Class, create:() => EricFehlerCodeResponse()), 'IHasIndex': TypeInfo(TypeOf.Interface), 'Erfolg': TypeInfo(TypeOf.Class, create:() => Erfolg()), 'Transfer': TypeInfo(TypeOf.Class, create:() => Transfer()), 'Transfers': TypeInfo(TypeOf.Class, create:() => Transfers()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'SemantischerIndex': TypeInfo(TypeOf.Class, create:() => SemantischerIndex()), 'FehlerRegelpruefung': TypeInfo(TypeOf.Class, create:() => FehlerRegelpruefung()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'Hinweis': TypeInfo(TypeOf.Class, create:() => Hinweis()), 'EricBearbeiteVorgang': TypeInfo(TypeOf.Class, create:() => EricBearbeiteVorgang()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'List': TypeInfo(TypeOf.Class, create:() => []), 'Verfahren': TypeInfo(TypeOf.Enum, enumValues:Verfahren.values), 'Vorgang': TypeInfo(TypeOf.Enum, enumValues:Vorgang.values), 'Testmerker': TypeInfo(TypeOf.Enum, enumValues:Testmerker.values), 'SigUser': TypeInfo(TypeOf.Class, create:() => SigUser()), 'Bundesland': TypeInfo(TypeOf.Enum, enumValues:Bundesland.values), 'Empfaenger': TypeInfo(TypeOf.Class, create:() => Empfaenger()), 'Verschluesselungsart': TypeInfo(TypeOf.Enum, enumValues:Verschluesselungsart.values), 'Kompression': TypeInfo(TypeOf.Enum, enumValues:Kompression.values), 'EricTyp': TypeInfo(TypeOf.Class, create:() => EricTyp()), 'Erstellung': TypeInfo(TypeOf.Class, create:() => Erstellung()), 'Datei': TypeInfo(TypeOf.Class, create:() => Datei()), 'Rueckgabe': TypeInfo(TypeOf.Class, create:() => Rueckgabe()), 'Stack': TypeInfo(TypeOf.Class, create:() => Stack()), 'RC': TypeInfo(TypeOf.Class, create:() => RC()), 'Zusatz': TypeInfo(TypeOf.Class, create:() => Zusatz()), 'TransferHeader': TypeInfo(TypeOf.Class, create:() => TransferHeader()), 'EmpfaengerID': TypeInfo(TypeOf.Enum, enumValues:EmpfaengerID.values), 'NDHEmpfaenger': TypeInfo(TypeOf.Class, create:() => NDHEmpfaenger()), 'Hersteller': TypeInfo(TypeOf.Class, create:() => Hersteller()), 'NutzdatenHeader': TypeInfo(TypeOf.Class, create:() => NutzdatenHeader()), 'Nutzdaten': TypeInfo(TypeOf.Class, create:() => Nutzdaten()), 'Nutzdatenblock': TypeInfo(TypeOf.Class, create:() => Nutzdatenblock()), 'DatenTeil': TypeInfo(TypeOf.Class, create:() => DatenTeil()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'Elster': TypeInfo(TypeOf.Class, create:() => Elster()), 'FileBase': TypeInfo(TypeOf.AbstractClass), 'Uint8List': TypeInfo(TypeOf.Class, create:() => Uint8List(0)), 'FileMetadata': TypeInfo(TypeOf.Class, create:() => FileMetadata()), 'BinaryFile': TypeInfo(TypeOf.Class, create:() => BinaryFile()), 'IFileMetadata': TypeInfo(TypeOf.Interface), 'BearbeiteVorgangResponse': TypeInfo(TypeOf.Class, create:() => BearbeiteVorgangResponse()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'ValidiereUndSende': TypeInfo(TypeOf.Class, create:() => ValidiereUndSende()), });