MonitoredItemCreateResult
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| status_code | StatusCode | [optional] | |
| monitored_item_id | int | [optional] [default to 0] | |
| revised_sampling_interval | float | [optional] [default to 0] | |
| revised_queue_size | int | [optional] [default to 0] | |
| filter_result | ExtensionObject | [optional] |
Example
from opcua_webapi.models.monitored_item_create_result import MonitoredItemCreateResult
# TODO update the JSON string below
json = "{}"
# create an instance of MonitoredItemCreateResult from a JSON string
monitored_item_create_result_instance = MonitoredItemCreateResult.from_json(json)
# print the JSON string representation of the object
print(MonitoredItemCreateResult.to_json())
# convert the object into a dict
monitored_item_create_result_dict = monitored_item_create_result_instance.to_dict()
# create an instance of MonitoredItemCreateResult from a dict
monitored_item_create_result_from_dict = MonitoredItemCreateResult.from_dict(monitored_item_create_result_dict)