from __future__ import annotations
from dataclasses import dataclass, field
from .group_of_entities_ref_structure import GroupOfEntitiesRefStructure
from .name_of_class_group_of_points_ref_structure_type import NameOfClassGroupOfPointsRefStructureType

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


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