from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_general_sign_ref_structure_type import NameOfClassGeneralSignRefStructureType
from .place_equipment_ref_structure import PlaceEquipmentRefStructure

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


@dataclass(slots=True, kw_only=True)
class GeneralSignRefStructure(PlaceEquipmentRefStructure):
    name_of_ref_class: NameOfClassGeneralSignRefStructureType = field(
        default=NameOfClassGeneralSignRefStructureType.GENERAL_SIGN,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )