from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_common_section_ref_structure_type import NameOfClassCommonSectionRefStructureType
from .section_ref_structure import SectionRefStructure

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


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