Name | Type | Description | Notes |
---|---|---|---|
status | StatusCode | [optional] | |
diagnostic_info | DiagnosticInfo | [optional] |
from opcua_webapi.models.status_change_notification import StatusChangeNotification
# TODO update the JSON string below
json = "{}"
# create an instance of StatusChangeNotification from a JSON string
status_change_notification_instance = StatusChangeNotification.from_json(json)
# print the JSON string representation of the object
print(StatusChangeNotification.to_json())
# convert the object into a dict
status_change_notification_dict = status_change_notification_instance.to_dict()
# create an instance of StatusChangeNotification from a dict
status_change_notification_from_dict = StatusChangeNotification.from_dict(status_change_notification_dict)