from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_luggage_spot_equipment_ref_structure_type import NameOfClassLuggageSpotEquipmentRefStructureType
from .spot_equipment_ref_structure import SpotEquipmentRefStructure

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


@dataclass(slots=True, kw_only=True)
class LuggageSpotEquipmentRefStructure(SpotEquipmentRefStructure):
    name_of_ref_class: NameOfClassLuggageSpotEquipmentRefStructureType = field(
        default=NameOfClassLuggageSpotEquipmentRefStructureType.LUGGAGE_SPOT_EQUIPMENT,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )