"""
Contains Tarifkosten class
and corresponding marshmallow schema for de-/serialization
"""
from typing import TYPE_CHECKING, Annotated, Literal, Optional
from pydantic import Field
from ..enum.typ import Typ
from ..utils import postprocess_docstring
from .tarifinfo import Tarifinfo
if TYPE_CHECKING:
from .kosten import Kosten
# pylint: disable=too-few-public-methods
[docs]
@postprocess_docstring
class Tarifkosten(Tarifinfo):
"""
Objekt zur Kommunikation von Kosten, die im Rahmen der Tarifanwendung entstehen
.. raw:: html
<object data="../_static/images/bo4e/bo/Tarifkosten.svg" type="image/svg+xml"></object>
.. HINT::
`Tarifkosten JSON Schema <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/{__gh_version__}/src/bo4e_schemas/bo/Tarifkosten.json>`_
"""
typ: Annotated[Literal[Typ.TARIFKOSTEN], Field(alias="_typ")] = Typ.TARIFKOSTEN # type: ignore[assignment]
kosten: Optional["Kosten"] = None
"""
Referenz (Link) zu einem Kostenobjekt, in dem die Kosten für die Anwendung
des Tarifs auf eine Abnahmesituation berechnet wurden
"""
# there are no optional attributes