File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11"""
2- Contains Buendelvertrag class and corresponding marshmallow schema for de-/serialization
2+ Contains Einspeisung class and corresponding marshmallow schema for de-/serialization
33"""
44
55# pylint: disable=too-few-public-methods
@@ -30,7 +30,7 @@ class Einspeisung(Geschaeftsobjekt):
3030
3131 marktlokations_id : Optional [str ] = None
3232
33- tranchen_id : Optional [str ] = None
33+ tranche_id : Optional [str ] = None
3434
3535 verguetungsempfaenger : Optional [Geschaeftspartnerrolle ] = None
3636
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class EEGVermarktungsform(StrEnum):
1212 # Ausfallvergütung für den Fall, dass andere Vermarktungsmethoden nicht verfügbar sind
1313 MARKTPRAEMIE = "MARKTPRAEMIE" #: Marktprämie
1414 # Marktprämie für die geförderte Direktvermarktung
15- SONSTIGES = "SONSTIGES " #: Sonstiges
15+ SONSTIGE = "SONSTIGE " #: Sonstige
1616 # Sonstige Vermarktungsformen ohne gesetzliche Vergütung
1717 KWKG_VERGUETUNG = "KWKG_VERGUETUNG" #: KWKG-Vergütung
1818 # Vergütung nach dem Kraft-Wärme-Kopplungsgesetz (KWKG)
Original file line number Diff line number Diff line change 55
66class Profilart (StrEnum ):
77 """
8- Diese Rollen kann ein Geschäftspartner einnehmen.
9-
8+ Diese Enum repräsentiert die verschiedenen Arten von Profilen, die in der BO4E vorkommen können.
109 Profilart (temperaturabhängig / standardlastprofil)
1110 """
1211
13- ART_STANDARDLASTPROFILOBJ = "ART_STANDARDLASTPROFILOBJ "
12+ ART_STANDARDLASTPROFIL = "ART_STANDARDLASTPROFIL "
1413 #: Standardlastprofil
1514 ART_TAGESPARAMETERABHAENGIGES_LASTPROFIL = "ART_TAGESPARAMETERABHAENGIGES_LASTPROFIL"
1615 #: Tagesparameterabhängiges Lastprofil
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class TestEinspeisung:
1414 pytest .param (
1515 Einspeisung (
1616 marktlokations_id = "teststring" ,
17- tranchen_id = "teststring" ,
17+ tranche_id = "teststring" ,
1818 verguetungsempfaenger = Geschaeftspartnerrolle .LIEFERANT ,
1919 eeg_vermarktungsform = EEGVermarktungsform .KWKG_VERGUETUNG ,
2020 landescode = Landescode .DE , # type:ignore[attr-defined]
You can’t perform that action at this time.
0 commit comments