MonitoringParameters
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| client_handle | int | [optional] [default to 0] | |
| sampling_interval | float | [optional] [default to 0] | |
| filter | ExtensionObject | [optional] | |
| queue_size | int | [optional] [default to 0] | |
| discard_oldest | bool | [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)