from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_garage_point_ref_structure_type import NameOfClassGaragePointRefStructureType
from .parking_point_ref_structure import ParkingPointRefStructure

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


@dataclass(slots=True, kw_only=True)
class GaragePointRefStructure(ParkingPointRefStructure):
    name_of_ref_class: NameOfClassGaragePointRefStructureType = field(
        default=NameOfClassGaragePointRefStructureType.GARAGE_POINT,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )