from __future__ import annotations
from enum import Enum

__NAMESPACE__ = "http://www.netex.org.uk/netex"


class EmergencyServiceEnumeration(Enum):
    POLICE = 'police'
    FIRE = 'fire'
    FIRST_AID = 'firstAid'
    SOS_POINT = 'sosPoint'
    OTHER = 'other'