from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_seat_equipment_ref_structure_type import NameOfClassSeatEquipmentRefStructureType
from .spot_equipment_ref_structure import SpotEquipmentRefStructure

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


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