from __future__ import annotations
from dataclasses import dataclass, field
from .entrance_ref_structure import EntranceRefStructure
from .name_of_class_stop_place_vehicle_entrance_ref_structure_type import NameOfClassStopPlaceVehicleEntranceRefStructureType

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


@dataclass(slots=True, kw_only=True)
class StopPlaceVehicleEntranceRefStructure(EntranceRefStructure):
    name_of_ref_class: NameOfClassStopPlaceVehicleEntranceRefStructureType = field(
        default=NameOfClassStopPlaceVehicleEntranceRefStructureType.STOP_PLACE_VEHICLE_ENTRANCE,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )