from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_topographic_projection_ref_structure_type import NameOfClassTopographicProjectionRefStructureType
from .zone_projection_ref_structure import ZoneProjectionRefStructure

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


@dataclass(slots=True, kw_only=True)
class TopographicProjectionRefStructure(ZoneProjectionRefStructure):
    name_of_ref_class: NameOfClassTopographicProjectionRefStructureType = field(
        default=NameOfClassTopographicProjectionRefStructureType.TOPOGRAPHIC_PROJECTION,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )