You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromopcua_webapi.models.monitored_item_modify_resultimportMonitoredItemModifyResult# TODO update the JSON string belowjson="{}"# create an instance of MonitoredItemModifyResult from a JSON stringmonitored_item_modify_result_instance=MonitoredItemModifyResult.from_json(json)
# print the JSON string representation of the objectprint(MonitoredItemModifyResult.to_json())
# convert the object into a dictmonitored_item_modify_result_dict=monitored_item_modify_result_instance.to_dict()
# create an instance of MonitoredItemModifyResult from a dictmonitored_item_modify_result_from_dict=MonitoredItemModifyResult.from_dict(monitored_item_modify_result_dict)