Source code for bo4e.enum.lokationstyp
# pylint: disable=missing-module-docstring
from bo4e.enum.strenum import StrEnum
[docs]
class Lokationstyp(StrEnum):
"""
Gibt an, ob es sich um eine Markt- oder Messlokation handelt.
"""
MALO = "MALO"
"""Marktlokation"""
MELO = "MELO"
"""Messlokation"""
NELO = "NELO"
"""Netzlokation"""
SR = "SR"
"""Steuerbare Ressource"""
TR = "TR"
"""Technische Ressource"""