from __future__ import annotations
from dataclasses import dataclass, field
from .facility_set_ref_structure import FacilitySetRefStructure
from .name_of_class_site_facility_set_ref_structure_type import NameOfClassSiteFacilitySetRefStructureType

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


@dataclass(slots=True, kw_only=True)
class SiteFacilitySetRefStructure(FacilitySetRefStructure):
    name_of_ref_class: NameOfClassSiteFacilitySetRefStructureType = field(
        default=NameOfClassSiteFacilitySetRefStructureType.SITE_FACILITY_SET,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )