from __future__ import annotations
from dataclasses import dataclass, field
from .point_ref_structure import PointRefStructure
from .point_refs_rel_structure import PointRefsRelStructure
from .projection_version_structure import ProjectionVersionStructure
from .zone_ref_structure import ZoneRefStructure

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


@dataclass(slots=True, kw_only=True)
class ZoneProjectionVersionStructure(ProjectionVersionStructure):
    class Meta:
        name = "ZoneProjection_VersionStructure"

    projected_zone_ref: ZoneRefStructure = field(
        metadata={
            "name": "ProjectedZoneRef",
            "type": "Element",
            "namespace": "http://www.netex.org.uk/netex",
        }
    )
    project_to_zone_ref: None | ZoneRefStructure = field(
        default=None,
        metadata={
            "name": "ProjectToZoneRef",
            "type": "Element",
            "namespace": "http://www.netex.org.uk/netex",
        }
    )
    project_to_point_ref: None | PointRefStructure = field(
        default=None,
        metadata={
            "name": "ProjectToPointRef",
            "type": "Element",
            "namespace": "http://www.netex.org.uk/netex",
        }
    )
    points: None | PointRefsRelStructure = field(
        default=None,
        metadata={
            "type": "Element",
            "namespace": "http://www.netex.org.uk/netex",
        }
    )