from __future__ import annotations
from dataclasses import dataclass, field
from .equipment_ref_structure import EquipmentRefStructure
from .name_of_class_activated_equipment_ref_structure_type import NameOfClassActivatedEquipmentRefStructureType

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


@dataclass(slots=True, kw_only=True)
class ActivatedEquipmentRefStructure(EquipmentRefStructure):
    name_of_ref_class: NameOfClassActivatedEquipmentRefStructureType = field(
        default=NameOfClassActivatedEquipmentRefStructureType.ACTIVATED_EQUIPMENT,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )