from __future__ import annotations
from dataclasses import dataclass, field
from .name_of_class_management_agent_ref_structure_type import NameOfClassManagementAgentRefStructureType
from .other_organisation_ref_structure import OtherOrganisationRefStructure

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


@dataclass(slots=True, kw_only=True)
class ManagementAgentRefStructure(OtherOrganisationRefStructure):
    name_of_ref_class: NameOfClassManagementAgentRefStructureType = field(
        default=NameOfClassManagementAgentRefStructureType.MANAGEMENT_AGENT,
        metadata={
            "name": "nameOfRefClass",
            "type": "Attribute",
        }
    )