"""
Contains Energieherkunft class
and corresponding marshmallow schema for de-/serialization
"""
from decimal import Decimal
from typing import TYPE_CHECKING, Optional
from ..utils import postprocess_docstring
from .com import COM
if TYPE_CHECKING:
from ..enum.erzeugungsart import Erzeugungsart
# pylint: disable=no-name-in-module
# pylint: disable=too-few-public-methods
[docs]
@postprocess_docstring
class Energieherkunft(COM):
"""
Abbildung einer Energieherkunft
.. raw:: html
<object data="../_static/images/bo4e/com/Energieherkunft.svg" type="image/svg+xml"></object>
.. HINT::
`Energieherkunft JSON Schema <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/{__gh_version__}/src/bo4e_schemas/com/Energieherkunft.json>`_
"""
#: Art der Erzeugung der Energie.
erzeugungsart: Optional["Erzeugungsart"] = None
#: Prozentualer Anteil der jeweiligen Erzeugungsart.
anteil_prozent: Optional[Decimal] = None