Source code for nisystemlink.clients.testmonitor.models._named_value

from typing import Any

from nisystemlink.clients.core._uplink._json_model import JsonModel


[docs]class NamedValue(JsonModel): name: str """The name of the value.""" value: Any """The value."""