from __future__ import annotations
from dataclasses import dataclass, field
from .access_equipment_ref_structure import AccessEquipmentRefStructure
from .name_of_class_travelator_equipment_ref_structure_type import NameOfClassTravelatorEquipmentRefStructureType

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


@dataclass(slots=True, kw_only=True)
class TravelatorEquipmentRefStructure(AccessEquipmentRefStructure):
    name_of_ref_class: NameOfClassTravelatorEquipmentRefStructureType = field(
        default=NameOfClassTravelatorEquipmentRefStructureType.TRAVELATOR_EQUIPMENT,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )