from __future__ import annotations
from dataclasses import dataclass, field
from .containment_aggregation_structure import ContainmentAggregationStructure
from .path_instruction import PathInstruction

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


@dataclass(slots=True, kw_only=True)
class PathInstructionsRelStructure(ContainmentAggregationStructure):
    class Meta:
        name = "pathInstructions_RelStructure"

    path_instruction: list[PathInstruction] = field(
        default_factory=list,
        metadata={
            "name": "PathInstruction",
            "type": "Element",
            "namespace": "http://www.netex.org.uk/netex",
            "min_occurs": 1,
        }
    )