from __future__ import annotations
from dataclasses import dataclass, field
from .assignment_ref_structure import AssignmentRefStructure
from .name_of_class_activation_assignment_ref_structure_type import NameOfClassActivationAssignmentRefStructureType

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


@dataclass(slots=True, kw_only=True)
class ActivationAssignmentRefStructure(AssignmentRefStructure):
    name_of_ref_class: NameOfClassActivationAssignmentRefStructureType = field(
        default=NameOfClassActivationAssignmentRefStructureType.ACTIVATION_ASSIGNMENT,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )