Source code for bo4e.com.tarifpreisstaffelproort

"""
Contains TarifpreisstaffelProOrt class
and corresponding marshmallow schema for de-/serialization
"""
from decimal import Decimal

from bo4e.com.com import COM

# pylint: disable=too-few-public-methods


[docs]class TarifpreisstaffelProOrt(COM): """ Gibt die Staffelgrenzen der jeweiligen Preise an .. raw:: html <object data="../_static/images/bo4e/com/TarifpreisstaffelProOrt.svg" type="image/svg+xml"></object> .. HINT:: `TarifpreisstaffelProOrt JSON Schema <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/Hochfrequenz/BO4E-python/main/json_schemas/com/TarifpreisstaffelProOrt.json>`_ """ # todo: decimal doesn't make sense here imo # https://github.com/Hochfrequenz/BO4E-python/issues/344 # required attributes #: Der Arbeitspreis in ct/kWh arbeitspreis: Decimal #: Der Arbeitspreis für Verbräuche in der Niedertarifzeit in ct/kWh arbeitspreis_n_t: Decimal #: Der Grundpreis in Euro/Jahr grundpreis: Decimal #: Unterer Wert, ab dem die Staffel gilt (inklusive) staffelgrenze_von: Decimal #: Oberer Wert, bis zu dem die Staffel gilt (exklusive) staffelgrenze_bis: Decimal
# there are no optional attributes