UpdateEventDetails

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
node_idstr[optional]
perform_insert_replaceintLink to specification.[optional]
filterEventFilter[optional]
event_dataList[HistoryEventFieldList][optional]

Example

from opcua_webapi.models.update_event_details import UpdateEventDetails

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

# convert the object into a dict
update_event_details_dict = update_event_details_instance.to_dict()
# create an instance of UpdateEventDetails from a dict
update_event_details_from_dict = UpdateEventDetails.from_dict(update_event_details_dict)

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