from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_entrance_ref_structure_type import NameOfClassEntranceRefStructureType
from .parking_entrance_ref_structure import ParkingEntranceRefStructure

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


@dataclass(slots=True, kw_only=True)
class ParkingEntranceForVehiclesRefStructure(ParkingEntranceRefStructure):
    name_of_ref_class: NameOfClassEntranceRefStructureType = field(
        default=NameOfClassEntranceRefStructureType.PARKING_ENTRANCE_FOR_VEHICLES,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )