Name | Type | Description | Notes |
---|---|---|---|
node_id | str | [optional] | |
perform_insert_replace | int | [optional] | |
update_values | List[DataValue] | [optional] |
from opcua_webapi.models.update_data_details import UpdateDataDetails
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateDataDetails from a JSON string
update_data_details_instance = UpdateDataDetails.from_json(json)
# print the JSON string representation of the object
print(UpdateDataDetails.to_json())
# convert the object into a dict
update_data_details_dict = update_data_details_instance.to_dict()
# create an instance of UpdateDataDetails from a dict
update_data_details_from_dict = UpdateDataDetails.from_dict(update_data_details_dict)