from __future__ import annotations
from dataclasses import dataclass, field
from .fare_price_ref_structure import FarePriceRefStructure
from .name_of_class_controllable_element_price_ref_structure_type import NameOfClassControllableElementPriceRefStructureType

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


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