from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_complex_feature_projection_ref_structure_type import NameOfClassComplexFeatureProjectionRefStructureType
from .projection_ref_structure import ProjectionRefStructure

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


@dataclass(slots=True, kw_only=True)
class ComplexFeatureProjectionRefStructure(ProjectionRefStructure):
    name_of_ref_class: NameOfClassComplexFeatureProjectionRefStructureType = field(
        default=NameOfClassComplexFeatureProjectionRefStructureType.COMPLEX_FEATURE_PROJECTION,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )