from __future__ import annotations
from dataclasses import dataclass, field
from .fare_price_versioned_child_structure import FarePriceVersionedChildStructure
from .time_interval_ref import TimeIntervalRef

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


@dataclass(slots=True, kw_only=True)
class TimeIntervalPriceVersionedChildStructure(FarePriceVersionedChildStructure):
    class Meta:
        name = "TimeIntervalPrice_VersionedChildStructure"

    time_interval_ref: None | TimeIntervalRef = field(
        default=None,
        metadata={
            "name": "TimeIntervalRef",
            "type": "Element",
            "namespace": "http://www.netex.org.uk/netex",
        }
    )