DeleteMonitoredItemsRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
request_headerRequestHeader[optional]
subscription_idint[optional] [default to 0]
monitored_item_idsList[int][optional]

Example

from opcua_webapi.models.delete_monitored_items_request import DeleteMonitoredItemsRequest

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

# convert the object into a dict
delete_monitored_items_request_dict = delete_monitored_items_request_instance.to_dict()
# create an instance of DeleteMonitoredItemsRequest from a dict
delete_monitored_items_request_from_dict = DeleteMonitoredItemsRequest.from_dict(delete_monitored_items_request_dict)

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