from __future__ import annotations
from dataclasses import dataclass, field
from .fare_price_ref_structure import FarePriceRefStructure
from .name_of_class_fare_product_price_ref_structure_type import NameOfClassFareProductPriceRefStructureType

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


@dataclass(slots=True, kw_only=True)
class FareProductPriceRefStructure(FarePriceRefStructure):
    name_of_ref_class: NameOfClassFareProductPriceRefStructureType = field(
        default=NameOfClassFareProductPriceRefStructureType.FARE_PRODUCT_PRICE,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )