from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_supplement_product_ref_structure_type import NameOfClassSupplementProductRefStructureType
from .preassigned_fare_product_ref_structure import PreassignedFareProductRefStructure

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


@dataclass(slots=True, kw_only=True)
class SupplementProductRefStructure(PreassignedFareProductRefStructure):
    name_of_ref_class: NameOfClassSupplementProductRefStructureType = field(
        default=NameOfClassSupplementProductRefStructureType.SUPPLEMENT_PRODUCT,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )