Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

StatusChangeNotification.md

File metadata and controls

30 lines (21 loc) · 1.1 KB

StatusChangeNotification

Properties

Name Type Description Notes
status StatusCode [optional]
diagnostic_info DiagnosticInfo [optional]

Example

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)

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