MonitoringParameters

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
client_handleint[optional] [default to 0]
sampling_intervalfloat[optional] [default to 0]
filterExtensionObject[optional]
queue_sizeint[optional] [default to 0]
discard_oldestbool[optional] [default to False]

Example

from opcua_webapi.models.monitoring_parameters import MonitoringParameters

# TODO update the JSON string below
json = "{}"
# create an instance of MonitoringParameters from a JSON string
monitoring_parameters_instance = MonitoringParameters.from_json(json)
# print the JSON string representation of the object
print(MonitoringParameters.to_json())

# convert the object into a dict
monitoring_parameters_dict = monitoring_parameters_instance.to_dict()
# create an instance of MonitoringParameters from a dict
monitoring_parameters_from_dict = MonitoringParameters.from_dict(monitoring_parameters_dict)

[Back to Model list] [Back to API list] [Back to README]