Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

UpdateEventDetails.md

File metadata and controls

32 lines (23 loc) · 1.13 KB

UpdateEventDetails

Properties

Name Type Description Notes
node_id str [optional]
perform_insert_replace int [optional]
filter EventFilter [optional]
event_data List[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]