from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_retail_consortium_ref_structure_type import NameOfClassRetailConsortiumRefStructureType
from .organisation_ref_structure import OrganisationRefStructure

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


@dataclass(slots=True, kw_only=True)
class RetailConsortiumRefStructure(OrganisationRefStructure):
    name_of_ref_class: NameOfClassRetailConsortiumRefStructureType = field(
        default=NameOfClassRetailConsortiumRefStructureType.RETAIL_CONSORTIUM,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )