from opcua_webapi.models.event_notification_list import EventNotificationList
# TODO update the JSON string below
json = "{}"
# create an instance of EventNotificationList from a JSON string
event_notification_list_instance = EventNotificationList.from_json(json)
# print the JSON string representation of the object
print(EventNotificationList.to_json())
# convert the object into a dict
event_notification_list_dict = event_notification_list_instance.to_dict()
# create an instance of EventNotificationList from a dict
event_notification_list_from_dict = EventNotificationList.from_dict(event_notification_list_dict)
[Back to Model list] [Back to API list] [Back to README]