from __future__ import annotations
from dataclasses import dataclass, field
from .assignment_ref_structure import AssignmentRefStructure
from .name_of_class_vehicle_meeting_point_assignment_ref_structure_type import NameOfClassVehicleMeetingPointAssignmentRefStructureType

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


@dataclass(slots=True, kw_only=True)
class VehicleMeetingPointAssignmentRefStructure(AssignmentRefStructure):
    name_of_ref_class: NameOfClassVehicleMeetingPointAssignmentRefStructureType = field(
        default=NameOfClassVehicleMeetingPointAssignmentRefStructureType.VEHICLE_MEETING_POINT_ASSIGNMENT,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )