from __future__ import annotations
from dataclasses import dataclass, field
from .group_of_entities_ref_structure import GroupOfEntitiesRefStructure
from .name_of_class_general_group_of_entities_ref_structure_type import NameOfClassGeneralGroupOfEntitiesRefStructureType

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


@dataclass(slots=True, kw_only=True)
class GeneralGroupOfEntitiesRefStructure(GroupOfEntitiesRefStructure):
    name_of_ref_class: NameOfClassGeneralGroupOfEntitiesRefStructureType = field(
        default=NameOfClassGeneralGroupOfEntitiesRefStructureType.GENERAL_GROUP_OF_ENTITIES,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )