MonitoredItemCreateResult

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
status_codeStatusCode[optional]
monitored_item_idint[optional] [default to 0]
revised_sampling_intervalfloat[optional] [default to 0]
revised_queue_sizeint[optional] [default to 0]
filter_resultExtensionObject[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)

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