from __future__ import annotations
from dataclasses import dataclass, field
from .assignment_ref_structure import AssignmentRefStructure
from .name_of_class_recharging_point_assignment_ref_structure_type import NameOfClassRechargingPointAssignmentRefStructureType

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


@dataclass(slots=True, kw_only=True)
class RechargingPointAssignmentRefStructure(AssignmentRefStructure):
    name_of_ref_class: NameOfClassRechargingPointAssignmentRefStructureType = field(
        default=NameOfClassRechargingPointAssignmentRefStructureType.RECHARGING_POINT_ASSIGNMENT,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )