from __future__ import annotations
from dataclasses import dataclass, field
from .addressable_place_ref_structure import AddressablePlaceRefStructure
from .name_of_class_garage_ref_structure_type import NameOfClassGarageRefStructureType

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


@dataclass(slots=True, kw_only=True)
class GarageRefStructure(AddressablePlaceRefStructure):
    name_of_ref_class: NameOfClassGarageRefStructureType = field(
        default=NameOfClassGarageRefStructureType.GARAGE,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )