from __future__ import annotations
from enum import Enum

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


class BookingMethodEnumeration(Enum):
    CALL_DRIVER = 'callDriver'
    CALL_OFFICE = 'callOffice'
    ONLINE = 'online'
    OTHER = 'other'
    PHONE_AT_STOP = 'phoneAtStop'
    TEXT = 'text'
    MOBILE_APP = 'mobileApp'
    AT_OFFICE = 'atOffice'
    NONE = 'none'