from __future__ import annotations
from dataclasses import dataclass, field
from .connection_ref_structure import ConnectionRefStructure
from .name_of_class_site_connection_ref_structure_type import NameOfClassSiteConnectionRefStructureType

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


@dataclass(slots=True, kw_only=True)
class SiteConnectionRefStructure(ConnectionRefStructure):
    name_of_ref_class: NameOfClassSiteConnectionRefStructureType = field(
        default=NameOfClassSiteConnectionRefStructureType.SITE_CONNECTION,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )