from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_fare_price_frame_ref_structure_type import NameOfClassFarePriceFrameRefStructureType
from .version_frame_ref_structure import VersionFrameRefStructure

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


@dataclass(slots=True, kw_only=True)
class FarePriceFrameRefStructure(VersionFrameRefStructure):
    name_of_ref_class: NameOfClassFarePriceFrameRefStructureType = field(
        default=NameOfClassFarePriceFrameRefStructureType.FARE_PRICE_FRAME,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )