from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_path_instruction_ref_structure_type import NameOfClassPathInstructionRefStructureType
from .ordered_version_of_object_ref_structure import OrderedVersionOfObjectRefStructure

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


@dataclass(slots=True, kw_only=True)
class PathInstructionRefStructure(OrderedVersionOfObjectRefStructure):
    name_of_ref_class: NameOfClassPathInstructionRefStructureType = field(
        default=NameOfClassPathInstructionRefStructureType.PATH_INSTRUCTION,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )