from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_point_on_route_ref_structure_type import NameOfClassPointOnRouteRefStructureType
from .point_in_sequence_ref_structure import PointInSequenceRefStructure

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


@dataclass(slots=True, kw_only=True)
class PointOnRouteRefStructure(PointInSequenceRefStructure):
    name_of_ref_class: NameOfClassPointOnRouteRefStructureType = field(
        default=NameOfClassPointOnRouteRefStructureType.POINT_ON_ROUTE,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )