from __future__ import annotations
from dataclasses import dataclass, field
from .facility_set_ref_structure import FacilitySetRefStructure
from .name_of_class_service_facility_set_ref_structure_type import NameOfClassServiceFacilitySetRefStructureType

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


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