from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_scheduled_stop_point_ref_structure_type import NameOfClassScheduledStopPointRefStructureType
from .timing_point_ref_structure import TimingPointRefStructure

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


@dataclass(slots=True, kw_only=True)
class ScheduledStopPointRefStructure(TimingPointRefStructure):
    name_of_ref_class: NameOfClassScheduledStopPointRefStructureType = field(
        default=NameOfClassScheduledStopPointRefStructureType.SCHEDULED_STOP_POINT,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )