from __future__ import annotations
from dataclasses import dataclass, field
from .frame_containment_structure import FrameContainmentStructure
from .travel_specification import TravelSpecification

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


@dataclass(slots=True, kw_only=True)
class TravelSpecificationsInFrameRelStructure(FrameContainmentStructure):
    class Meta:
        name = "travelSpecificationsInFrame_RelStructure"

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