from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_vehicle_stopping_position_ref_structure_type import NameOfClassVehicleStoppingPositionRefStructureType
from .stop_place_space_ref_structure import StopPlaceSpaceRefStructure

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


@dataclass(slots=True, kw_only=True)
class VehicleStoppingPositionRefStructure(StopPlaceSpaceRefStructure):
    name_of_ref_class: NameOfClassVehicleStoppingPositionRefStructureType = field(
        default=NameOfClassVehicleStoppingPositionRefStructureType.VEHICLE_STOPPING_POSITION,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )