from __future__ import annotations
from enum import Enum

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


class BerthFacilityEnumeration(Enum):
    LOWER = 'lower'
    MIDDLE = 'middle'
    UPPER = 'upper'
    BOTH = 'both'
    ALL = 'all'