from __future__ import annotations
from enum import Enum

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


class StairRampEnumeration(Enum):
    NONE = 'none'
    BICYCLE = 'bicycle'
    LUGGAGE = 'luggage'
    STROLLER = 'stroller'
    OTHER = 'other'
    UNKNOWN = 'unknown'