from __future__ import annotations
from dataclasses import dataclass, field
from .activation_point_ref_structure import ActivationPointRefStructure
from .name_of_class_beacon_point_ref_structure_type import NameOfClassBeaconPointRefStructureType

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


@dataclass(slots=True, kw_only=True)
class BeaconPointRefStructure(ActivationPointRefStructure):
    name_of_ref_class: NameOfClassBeaconPointRefStructureType = field(
        default=NameOfClassBeaconPointRefStructureType.BEACON_POINT,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )