from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_general_section_ref_structure_type import NameOfClassGeneralSectionRefStructureType
from .section_ref_structure import SectionRefStructure

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


@dataclass(slots=True, kw_only=True)
class GeneralSectionRefStructure(SectionRefStructure):
    name_of_ref_class: NameOfClassGeneralSectionRefStructureType = field(
        default=NameOfClassGeneralSectionRefStructureType.GENERAL_SECTION,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )